This commit is contained in:
matt c 2024-10-17 15:32:16 +01:00
parent 5b5632d119
commit 594dfd297c
16 changed files with 186 additions and 848 deletions

5
.astro/settings.json Normal file
View file

@ -0,0 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1729172034569
}
}

188
.astro/types.d.ts vendored
View file

@ -1,187 +1 @@
declare module 'astro:content' {
interface Render {
'.md': Promise<{
Content: import('astro').MarkdownInstance<{}>['Content'];
headings: import('astro').MarkdownHeading[];
remarkPluginFrontmatter: Record<string, any>;
}>;
}
}
declare module 'astro:content' {
export { z } from 'astro/zod';
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
export type CollectionKey = keyof AnyEntryMap;
export type CollectionEntry<C extends CollectionKey> = Flatten<AnyEntryMap[C]>;
export type ContentCollectionKey = keyof ContentEntryMap;
export type DataCollectionKey = keyof DataEntryMap;
// This needs to be in sync with ImageMetadata
export type ImageFunction = () => import('astro/zod').ZodObject<{
src: import('astro/zod').ZodString;
width: import('astro/zod').ZodNumber;
height: import('astro/zod').ZodNumber;
format: import('astro/zod').ZodUnion<
[
import('astro/zod').ZodLiteral<'png'>,
import('astro/zod').ZodLiteral<'jpg'>,
import('astro/zod').ZodLiteral<'jpeg'>,
import('astro/zod').ZodLiteral<'tiff'>,
import('astro/zod').ZodLiteral<'webp'>,
import('astro/zod').ZodLiteral<'gif'>,
import('astro/zod').ZodLiteral<'svg'>,
import('astro/zod').ZodLiteral<'avif'>,
]
>;
}>;
type BaseSchemaWithoutEffects =
| import('astro/zod').AnyZodObject
| import('astro/zod').ZodUnion<[BaseSchemaWithoutEffects, ...BaseSchemaWithoutEffects[]]>
| import('astro/zod').ZodDiscriminatedUnion<string, import('astro/zod').AnyZodObject[]>
| import('astro/zod').ZodIntersection<BaseSchemaWithoutEffects, BaseSchemaWithoutEffects>;
type BaseSchema =
| BaseSchemaWithoutEffects
| import('astro/zod').ZodEffects<BaseSchemaWithoutEffects>;
export type SchemaContext = { image: ImageFunction };
type DataCollectionConfig<S extends BaseSchema> = {
type: 'data';
schema?: S | ((context: SchemaContext) => S);
};
type ContentCollectionConfig<S extends BaseSchema> = {
type?: 'content';
schema?: S | ((context: SchemaContext) => S);
};
type CollectionConfig<S> = ContentCollectionConfig<S> | DataCollectionConfig<S>;
export function defineCollection<S extends BaseSchema>(
input: CollectionConfig<S>
): CollectionConfig<S>;
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
type ValidContentEntrySlug<C extends keyof ContentEntryMap> = AllValuesOf<
ContentEntryMap[C]
>['slug'];
export function getEntryBySlug<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
collection: C,
// Note that this has to accept a regular string too, for SSR
entrySlug: E
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getDataEntryById<C extends keyof DataEntryMap, E extends keyof DataEntryMap[C]>(
collection: C,
entryId: E
): Promise<CollectionEntry<C>>;
export function getCollection<C extends keyof AnyEntryMap, E extends CollectionEntry<C>>(
collection: C,
filter?: (entry: CollectionEntry<C>) => entry is E
): Promise<E[]>;
export function getCollection<C extends keyof AnyEntryMap>(
collection: C,
filter?: (entry: CollectionEntry<C>) => unknown
): Promise<CollectionEntry<C>[]>;
export function getEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(entry: {
collection: C;
slug: E;
}): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(entry: {
collection: C;
id: E;
}): E extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
collection: C,
slug: E
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
collection: C,
id: E
): E extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
/** Resolve an array of entry references from the same collection */
export function getEntries<C extends keyof ContentEntryMap>(
entries: {
collection: C;
slug: ValidContentEntrySlug<C>;
}[]
): Promise<CollectionEntry<C>[]>;
export function getEntries<C extends keyof DataEntryMap>(
entries: {
collection: C;
id: keyof DataEntryMap[C];
}[]
): Promise<CollectionEntry<C>[]>;
export function reference<C extends keyof AnyEntryMap>(
collection: C
): import('astro/zod').ZodEffects<
import('astro/zod').ZodString,
C extends keyof ContentEntryMap
? {
collection: C;
slug: ValidContentEntrySlug<C>;
}
: {
collection: C;
id: keyof DataEntryMap[C];
}
>;
// Allow generic `string` to avoid excessive type errors in the config
// if `dev` is not running to update as you edit.
// Invalid collection names will be caught at build time.
export function reference<C extends string>(
collection: C
): import('astro/zod').ZodEffects<import('astro/zod').ZodString, never>;
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
type InferEntrySchema<C extends keyof AnyEntryMap> = import('astro/zod').infer<
ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']>
>;
type ContentEntryMap = {
};
type DataEntryMap = {
};
type AnyEntryMap = ContentEntryMap & DataEntryMap;
type ContentConfig = never;
}
/// <reference types="astro/client" />

74
README-upstream.md Normal file
View file

@ -0,0 +1,74 @@
# Astro & Tailwind CSS Starter Kit
## 🔥 Features
Explore the Astro.js Personal Blog Template a sleek and feature-rich platform for your personal blog:
- **Astro.js Powered**: Dynamic and efficient JavaScript-driven experience.
- **Tailwind CSS Integration**: Ensures a stylish and responsive design.
- **RSS Feed Support**: Keeps your audience updated effortlessly.
- **Markdown Compatibility**: Streamlines content creation with easy formatting.
- **Syntax Highlighting**: Enhances code snippet readability for tech enthusiasts.
- **SEO-Optimized**: Includes a sitemap for optimal search engine visibility.
- **Vercel Deployment:** preconfigured Vercel deployment & web analytics.
- **Framework of your choice:** 100% Astro.js only template - choose your JS Framework (react preinstalled)
Unlock a seamless blend of aesthetics and functionality to share your unique voice with the world.
## 💻 Showcase
![showcase](/public/showcase.png 'AstroPress - Tech Blog Template')
## 📦 Template Integrations
- @astrojs/tailwind - https://docs.astro.build/en/guides/integrations-guide/tailwind/
- @astrojs/react - https://docs.astro.build/en/guides/integrations-guide/react/
- @astrojs/sitemap - https://docs.astro.build/en/guides/integrations-guide/sitemap/
- @astrojs/rss - https://docs.astro.build/en/guides/rss/
- @vercel/analytics - https://vercel.com/docs/analytics/
- rehype-pretty-code - https://rehype-pretty-code.netlify.app/
## 🏛️ Template Structure
Inside of your Astro project, you'll see the following folders and files:
```
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## 🚀 Getting started
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :--------------------- | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro --help` | Get help using the Astro CLI |
## ❤️ Helping out
If you find that something isn't working right then I'm always happy to hear it to improve this starter! You can contribute in many ways and forms. Let me know by either:
1. [Filing an issue](https://github.com/nicdun/astro-tech-blog/issues)
2. [Submitting a pull request](https://github.com/nicdun/astro-tech-blog/pulls)
3. [Starting a discussion](https://github.com/nicdun/astro-tech-blog/discussions)
4. [Buying me a coffee!](https://www.buymeacoffee.com/nicdun)
## ☕ Thank you!
A big thank you to the creators of the awesome Astro static site generator and to all using this starter to make the web a bit more accessible for all people around the world :)

View file

@ -1,74 +1 @@
# Astro & Tailwind CSS Starter Kit
## 🔥 Features
Explore the Astro.js Personal Blog Template a sleek and feature-rich platform for your personal blog:
- **Astro.js Powered**: Dynamic and efficient JavaScript-driven experience.
- **Tailwind CSS Integration**: Ensures a stylish and responsive design.
- **RSS Feed Support**: Keeps your audience updated effortlessly.
- **Markdown Compatibility**: Streamlines content creation with easy formatting.
- **Syntax Highlighting**: Enhances code snippet readability for tech enthusiasts.
- **SEO-Optimized**: Includes a sitemap for optimal search engine visibility.
- **Vercel Deployment:** preconfigured Vercel deployment & web analytics.
- **Framework of your choice:** 100% Astro.js only template - choose your JS Framework (react preinstalled)
Unlock a seamless blend of aesthetics and functionality to share your unique voice with the world.
## 💻 Showcase
![showcase](/public/showcase.png 'AstroPress - Tech Blog Template')
## 📦 Template Integrations
- @astrojs/tailwind - https://docs.astro.build/en/guides/integrations-guide/tailwind/
- @astrojs/react - https://docs.astro.build/en/guides/integrations-guide/react/
- @astrojs/sitemap - https://docs.astro.build/en/guides/integrations-guide/sitemap/
- @astrojs/rss - https://docs.astro.build/en/guides/rss/
- @vercel/analytics - https://vercel.com/docs/analytics/
- rehype-pretty-code - https://rehype-pretty-code.netlify.app/
## 🏛️ Template Structure
Inside of your Astro project, you'll see the following folders and files:
```
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## 🚀 Getting started
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :--------------------- | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro --help` | Get help using the Astro CLI |
## ❤️ Helping out
If you find that something isn't working right then I'm always happy to hear it to improve this starter! You can contribute in many ways and forms. Let me know by either:
1. [Filing an issue](https://github.com/nicdun/astro-tech-blog/issues)
2. [Submitting a pull request](https://github.com/nicdun/astro-tech-blog/pulls)
3. [Starting a discussion](https://github.com/nicdun/astro-tech-blog/discussions)
4. [Buying me a coffee!](https://www.buymeacoffee.com/nicdun)
## ☕ Thank you!
A big thank you to the creators of the awesome Astro static site generator and to all using this starter to make the web a bit more accessible for all people around the world :)
# Goober.Cloud website

View file

@ -30,7 +30,7 @@ const options = {
// https://astro.build/config
export default defineConfig({
site: 'https://astro-tech-blog-ten.vercel.app/',
site: 'https://goober.cloud/',
markdown: {
syntaxHighlight: false,
// Disable syntax built-in syntax hightlighting from astro

View file

@ -6,7 +6,7 @@ const year = new Date();
<Section>
<footer class="text-center">
© {year.getFullYear()} - <a class="underline hover:text-orange-600" href="/imprint/">Imprint</a> - made with
♥️ by <a class="underline hover:text-orange-600" href="http://nicdun.dev" target="_blank">nicdun.dev</a>
© {year.getFullYear()} - made with
♥️ by <a class="underline hover:text-orange-600" href="http://mattcompton.dev" target="_blank">mattcompton.dev</a>
</footer>
</Section>

View file

@ -7,20 +7,17 @@ const site = Astro.site;
<Section>
<br />
<p class="pb-2 pt-6 text-4xl font-bold">Hello, I'm your new Astro.js Blog Template 🚀</p>
<p class="pb-2 pt-6 text-4xl font-bold"><span class="text-orange-600">Welcome to Goober.Cloud!</span></p>
<div class="text-sm">
<p class="py-2">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.Lorem ipsum dolor sit amet <span class="font-black text-orange-600">Angular</span> adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.Lorem ipsum dolor sit amet consectetur <span class="font-black text-orange-600">Angular</span> elit. Tenetur vero esse non molestias eos <span class="font-black text-orange-600">Angular</span>, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
We host a number of services, and signup for them is free!
</p>
<p class="py-2">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.Lorem ipsum dolor sit amet <span class="font-black text-orange-600">Angular</span> adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
</p>
<p class="py-2">
Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.Lorem ipsum dolor sit amet consectetur <span class="font-black text-orange-600">Angular</span> elit. Tenetur vero esse non molestias eos <span class="font-black text-orange-600">Angular</span>, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
</p>
</div>
<div class="flex">
<Social href="https://github.com/#">
<Social href="https://git.goober.cloud/goobercloud">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-4 w-4"
@ -32,18 +29,6 @@ const site = Astro.site;
></path>
</svg>
</Social>
<Social href="https://www.linkedin.com/#">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-4 w-4"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z"
></path>
</svg>
</Social>
<Social href={`${site}rss.xml`}>
<svg viewBox="0 0 24 24" width="1.2em" height="1.2em"
><path

View file

@ -6,14 +6,15 @@ import Section from './Section.astro';
<div class="flex justify-between">
<div class="text-3xl font-bold">
<a href="/"
>💻 <span class="pr-2 text-2xl text-gray-500">{'<'}</span>astro<span
>💻 <span class="pr-2 text-2xl text-gray-500">{'<'}</span>goober<span
class="text-orange-600">.</span
>js<span class="pl-2 text-2xl text-gray-500">{'/>'}</span></a
>cloud<span class="pl-2 text-2xl text-gray-500">{'/>'}</span></a
>
</div>
<div class="flex items-center">
<nav>
<ul class="hidden flex-row sm:flex">
<li><a href="/services" class="mr-3 hover:text-orange-600">SERVICES</a></li>
<li><a href="/tags" class="mr-3 hover:text-orange-600">TAGS</a></li>
<li><a href="/" class="hover:text-orange-600">BLOG</a></li>
</ul>

View file

@ -0,0 +1,7 @@
---
---
<div class="mx-auto w-full max-w-screen px-4 py-6">
<slot />
</div>

View file

@ -0,0 +1,13 @@
---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<p class="text-bold pt-5 text-center text-2xl">
<span class="text-orange-600">
<slot/>
</span>
</p>

View file

@ -1,81 +0,0 @@
---
import Section from '@/components/Section.astro';
import Base from '@/layouts/Base.astro';
import { AppConfig } from '@/utils/AppConfig';
const { title } = AppConfig;
const { description } = AppConfig;
---
<Base head={{ title, description }}>
<Section>
<div class="text-sm">
<p class="pt-6 text-4xl">Imprint</p>
<p class="pb-4 pt-10 text-lg font-bold">Information according to § 5 TMG:</p>
<p>Niolas Dunke</p>
<p>Neuburgerstraße 25c</p>
<p>76287 Rheinstetten</p>
<p>Germany</p>
<p class="pb-4 pt-10 text-lg font-bold">Contact</p>
<p>E-Mail: <a href="mailto:nicolas.dunke@nd-solution.de">nicolas.dunke@nd-solution.de</a></p>
<p>
Internet-Adress: <a class="underline" href="https://astro-tech-blog-ten.vercel.app/"
>https://astro-tech-blog-ten.vercel.app/</a
>
</p>
<p class="pb-4 pt-10 text-lg font-bold">Editorially Responsible</p>
<p>See Information according to § 5 TMG.</p>
<p class="pb-4 pt-10 text-lg font-bold">Graphics and images</p>
<p>Unless specified differently, Nicolas Dunke is the creator of all graphics and images.</p>
<p class="pt-10 text-lg font-bold">Disclaimer</p>
<p class="pb-4 pt-10 text-base font-bold">Liability for content</p>
<p>
All content on our website has been created with the utmost care and to the best of our
knowledge. However, we cannot guarantee the accuracy, completeness, and timeliness of the
content. As a service provider, we are responsible for our own content on these pages in
accordance with § 7 (1) TMG. According to §§ 8 to 10 TMG, we as service providers are not
obligated to monitor transmitted or stored third-party information or to investigate
circumstances that indicate illegal activity. Obligations to remove or block the use of
information under general law remain unaffected by this.
</p>
<p>
However, liability in this regard is only possible from the time of knowledge of a specific
legal violation. Upon becoming aware of such legal violations, we will remove this content
immediately.
</p>
<p class="pb-4 pt-10 text-base font-bold">Limitation of liability for external links</p>
<p>
Our website contains links to external websites of third parties. We have no influence on
the content of these directly or indirectly linked websites. Therefore, we cannot assume any
liability for the "external links." The respective provider or operator (author) of the
pages is responsible for the content of the external links.
</p>
<p>
If we become aware of legal violations, the external links will be removed by us
immediately.
</p>
<p class="pb-4 pt-10 text-base font-bold">Copyright</p>
<p>
The content and works published on our website are subject to <a
class="underline"
href="http://www.gesetze-im-internet.de/bundesrecht/urhg/gesamt.pdf"
>German copyright law</a
>. The reproduction, processing, distribution, and any kind of exploitation beyond the
limits of copyright require the prior written consent of the respective author in
intellectual and material terms. Downloads and copies of this page are only permitted for
private and non-commercial use. If the content on our website was not created by us, the
copyrights of third parties must be observed. Third-party content is identified as such. If
you nevertheless become aware of a copyright infringement, please inform us accordingly. If
we become aware of legal violations, we will remove such content immediately.
</p>
</div>
</Section>
</Base>

View file

@ -1,163 +1,24 @@
---
layout: ../../layouts/post.astro
title: "This is the first post of my new Astro blog."
pubDate: 2023-12-23
description: "This is the first post of my new Astro blog."
author: "nicdun"
excerpt: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et
title: "Website rework"
pubDate: 2024-10-17
description: "This is the first post of the new website"
author: "matt"
excerpt: New site go brr
image:
src:
alt:
tags: ["tag1", "tag2", "tag3"]
tags: ["admin"]
---
This is a paragraph. Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
# Hey there!
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
You've probably noticed that this site is very different!
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Jekyll was being a pain, and the "theme" we had was mostly a hack.
## Headings
I'm not super familiar with Node, Astro, or TypeScript, but given that my [personal site](https://mattcompton.dev) is Docusaurus, I've had some exposure to Node at least. And, any experience is way more than I know about Ruby.
# H1 For example
I'll write more about other changes to Goober.Cloud that have happened recently, once I get this website actually out to replace the broken Jekyll site that was here. I hope
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## H2 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
### H3 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
#### H4 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
##### H5 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
###### H6 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## Emphasis
Emphasis, aka italics, with _asterisks_ or _underscores_.
Strong emphasis, aka bold, with **asterisks** or **underscores**.
Strikethrough uses two tildes. ~~Scratch this.~~
## Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
## Horizontal separator
This is a horizontal separator:
---
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
---
## List types
### Ordered list
1. List item 1
2. List item 2
1. Nested list item A
2. Nested list item B
3. List item 3
### Unordered list
- List item
- List item
- Nested list item
- Nested list item
- Double nested list item
- Double nested list item
- List item
### Mixed list
1. First ordered list item
2. Another item
- Unordered sub-list.
3. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
## Links
[Inline-style link](https://www.google.com)
[Inline-style link with title](https://www.google.com "Google's Homepage")
[Reference-style link][arbitrary case-insensitive reference text]
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself].
Some text to show that the reference links can follow later.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
## Images
Images included in _\_posts_ folder are lazy loaded.
Inline-style:
![alt text](/src/images/random.jpeg "Logo Title Text 1")
## Table
| Tables | Are | Cool |
| ------------- | :-----------: | ---: |
| col 3 is | right-aligned | 1600 |
| col 2 is | centered | 12 |
| zebra stripes | are neat | 1 |
| Markdown | Less | Pretty |
| -------- | --------- | ---------- |
| _Still_ | `renders` | **nicely** |
| 1 | 2 | 3 |
## Syntax highlight
```ts title="astro.config.mjs" showLineNumbers {1-2,5-6}
import { defineConfig } from "astro/config";
import vercelStatic from "@astrojs/vercel/static";
export default defineConfig({
output: "static",
adapter: vercelStatic({
webAnalytics: {
enabled: true,
},
}),
});
```
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
```python showLineNumbers
s = "Python syntax highlighting"
print s
```
Feel free to send any website feedback my way!.

View file

@ -1,163 +0,0 @@
---
layout: ../../layouts/post.astro
title: "This is the second post of my new Astro blog."
pubDate: 2023-12-24
description: "This is the second post of my new Astro blog."
author: "nicdun"
excerpt: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et
image:
src:
alt:
tags: ["tag1", "tag2", "tag3"]
---
This is a paragraph. Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## Headings
# H1 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## H2 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
### H3 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
#### H4 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
##### H5 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
###### H6 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## Emphasis
Emphasis, aka italics, with _asterisks_ or _underscores_.
Strong emphasis, aka bold, with **asterisks** or **underscores**.
Strikethrough uses two tildes. ~~Scratch this.~~
## Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
## Horizontal separator
This is a horizontal separator:
---
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
---
## List types
### Ordered list
1. List item 1
2. List item 2
1. Nested list item A
2. Nested list item B
3. List item 3
### Unordered list
- List item
- List item
- Nested list item
- Nested list item
- Double nested list item
- Double nested list item
- List item
### Mixed list
1. First ordered list item
2. Another item
- Unordered sub-list.
3. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
## Links
[Inline-style link](https://www.google.com)
[Inline-style link with title](https://www.google.com "Google's Homepage")
[Reference-style link][arbitrary case-insensitive reference text]
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself].
Some text to show that the reference links can follow later.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
## Images
Images included in _\_posts_ folder are lazy loaded.
Inline-style:
![alt text](/src/images/random.jpeg "Logo Title Text 1")
## Table
| Tables | Are | Cool |
| ------------- | :-----------: | ---: |
| col 3 is | right-aligned | 1600 |
| col 2 is | centered | 12 |
| zebra stripes | are neat | 1 |
| Markdown | Less | Pretty |
| -------- | --------- | ---------- |
| _Still_ | `renders` | **nicely** |
| 1 | 2 | 3 |
## Syntax highlight
```ts title="astro.config.mjs" showLineNumbers {1-2,5-6}
import { defineConfig } from "astro/config";
import vercelStatic from "@astrojs/vercel/static";
export default defineConfig({
output: "static",
adapter: vercelStatic({
webAnalytics: {
enabled: true,
},
}),
});
```
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
```python showLineNumbers
s = "Python syntax highlighting"
print s
```

View file

@ -1,163 +0,0 @@
---
layout: ../../layouts/post.astro
title: "This is the third post of my new Astro blog."
pubDate: 2023-12-25
description: "This is the third post of my new Astro blog."
author: "nicdun"
excerpt: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et
image:
src:
alt:
tags: ["tag1", "tag2", "tag3"]
---
This is a paragraph. Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## Headings
# H1 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## H2 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
### H3 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
#### H4 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
##### H5 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
###### H6 For example
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
## Emphasis
Emphasis, aka italics, with _asterisks_ or _underscores_.
Strong emphasis, aka bold, with **asterisks** or **underscores**.
Strikethrough uses two tildes. ~~Scratch this.~~
## Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
## Horizontal separator
This is a horizontal separator:
---
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
---
## List types
### Ordered list
1. List item 1
2. List item 2
1. Nested list item A
2. Nested list item B
3. List item 3
### Unordered list
- List item
- List item
- Nested list item
- Nested list item
- Double nested list item
- Double nested list item
- List item
### Mixed list
1. First ordered list item
2. Another item
- Unordered sub-list.
3. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
## Links
[Inline-style link](https://www.google.com)
[Inline-style link with title](https://www.google.com "Google's Homepage")
[Reference-style link][arbitrary case-insensitive reference text]
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself].
Some text to show that the reference links can follow later.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
## Images
Images included in _\_posts_ folder are lazy loaded.
Inline-style:
![alt text](/src/images/random.jpeg "Logo Title Text 1")
## Table
| Tables | Are | Cool |
| ------------- | :-----------: | ---: |
| col 3 is | right-aligned | 1600 |
| col 2 is | centered | 12 |
| zebra stripes | are neat | 1 |
| Markdown | Less | Pretty |
| -------- | --------- | ---------- |
| _Still_ | `renders` | **nicely** |
| 1 | 2 | 3 |
## Syntax highlight
```ts title="astro.config.mjs" showLineNumbers {1-2,5-6}
import { defineConfig } from "astro/config";
import vercelStatic from "@astrojs/vercel/static";
export default defineConfig({
output: "static",
adapter: vercelStatic({
webAnalytics: {
enabled: true,
},
}),
});
```
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.
```python showLineNumbers
s = "Python syntax highlighting"
print s
```

58
src/pages/services.astro Normal file
View file

@ -0,0 +1,58 @@
---
import { AppConfig } from '@/utils/AppConfig';
import Base from '@/layouts/Base.astro';
import Hero from '@/components/Hero.astro';
import LatestPosts from '@/components/LatestPosts.astro';
import Section from '@/components/Section.astro';
import Subheading from '@/components/Subheading.astro';
import ServSection from '@/components/ServSection.astro';
import Heading from '@/components/Heading.astro';
const { title } = AppConfig;
const { description } = AppConfig;
---
<Base head={{ title, description }}>
<Section>
<span class="text-orange-600"><Heading title="Services"></Heading></span>
<p class="text-center">(Service names below are links)</p>
</Section>
<ServSection>
<Subheading><a href="https://git.goober.cloud">Git</a></Subheading>
<p class="text-center">Forgejo git server for storing code</p>
</ServSection>
<ServSection>
<Subheading><a href="https://goobersin.space">Mastodon</a></Subheading>
<p class="text-center">Fediverse server (alternative to X)</p>
</ServSection>
<ServSection>
<Subheading><a href="https://search.goober.cloud">SearX</a></Subheading>
<p class="text-center">Privacy-first metasearch engine</p>
</ServSection>
<ServSection>
<Subheading><a href="https://wiki.goober.cloud">Wiki</a></Subheading>
<p class="text-center">Knowledgebase about Goober.Cloud</p>
</ServSection>
<ServSection>
<Subheading><a href="https://status.goober.cloud/status/goober">Status Page</a></Subheading>
<p class="text-center">Check if everything is running smoothly</p>
</ServSection>
<ServSection>
<Subheading><a>Webmail</a></Subheading>
<p class="text-center">(no link unless you sign up!)</p>
</ServSection>
<ServSection>
<Subheading><a>Hosting for your project? </a></Subheading>
<p class="text-center">(reach out to Matt)</p>
</ServSection>
</Base>

View file

@ -1,8 +1,8 @@
export const AppConfig = {
site_name: 'AstroPress',
title: 'AstroPress | Astro and Tailwind CSS',
description: 'Boilerplate built with Astro and Tailwind CSS',
author: 'Nicolas',
locale_region: 'de-en',
site_name: 'Goober.Cloud',
title: 'Goober.Cloud | Hosted services + sillyness',
description: 'Cats and servers',
author: 'Matt',
locale_region: 'us-en',
locale: 'en'
};