diff --git a/.astro/settings.json b/.astro/settings.json new file mode 100644 index 0000000..4118a7e --- /dev/null +++ b/.astro/settings.json @@ -0,0 +1,5 @@ +{ + "_variables": { + "lastUpdateCheck": 1729172034569 + } +} \ No newline at end of file diff --git a/.astro/types.d.ts b/.astro/types.d.ts index 8fb02dc..f964fe0 100644 --- a/.astro/types.d.ts +++ b/.astro/types.d.ts @@ -1,187 +1 @@ -declare module 'astro:content' { - interface Render { - '.md': Promise<{ - Content: import('astro').MarkdownInstance<{}>['Content']; - headings: import('astro').MarkdownHeading[]; - remarkPluginFrontmatter: Record; - }>; - } -} - -declare module 'astro:content' { - export { z } from 'astro/zod'; - - type Flatten = T extends { [K: string]: infer U } ? U : never; - - export type CollectionKey = keyof AnyEntryMap; - export type CollectionEntry = Flatten; - - 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 - | import('astro/zod').ZodIntersection; - - type BaseSchema = - | BaseSchemaWithoutEffects - | import('astro/zod').ZodEffects; - - export type SchemaContext = { image: ImageFunction }; - - type DataCollectionConfig = { - type: 'data'; - schema?: S | ((context: SchemaContext) => S); - }; - - type ContentCollectionConfig = { - type?: 'content'; - schema?: S | ((context: SchemaContext) => S); - }; - - type CollectionConfig = ContentCollectionConfig | DataCollectionConfig; - - export function defineCollection( - input: CollectionConfig - ): CollectionConfig; - - type AllValuesOf = T extends any ? T[keyof T] : never; - type ValidContentEntrySlug = AllValuesOf< - ContentEntryMap[C] - >['slug']; - - export function getEntryBySlug< - C extends keyof ContentEntryMap, - E extends ValidContentEntrySlug | (string & {}), - >( - collection: C, - // Note that this has to accept a regular string too, for SSR - entrySlug: E - ): E extends ValidContentEntrySlug - ? Promise> - : Promise | undefined>; - - export function getDataEntryById( - collection: C, - entryId: E - ): Promise>; - - export function getCollection>( - collection: C, - filter?: (entry: CollectionEntry) => entry is E - ): Promise; - export function getCollection( - collection: C, - filter?: (entry: CollectionEntry) => unknown - ): Promise[]>; - - export function getEntry< - C extends keyof ContentEntryMap, - E extends ValidContentEntrySlug | (string & {}), - >(entry: { - collection: C; - slug: E; - }): E extends ValidContentEntrySlug - ? Promise> - : Promise | 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 - : Promise | undefined>; - export function getEntry< - C extends keyof ContentEntryMap, - E extends ValidContentEntrySlug | (string & {}), - >( - collection: C, - slug: E - ): E extends ValidContentEntrySlug - ? Promise> - : Promise | undefined>; - export function getEntry< - C extends keyof DataEntryMap, - E extends keyof DataEntryMap[C] | (string & {}), - >( - collection: C, - id: E - ): E extends keyof DataEntryMap[C] - ? Promise - : Promise | undefined>; - - /** Resolve an array of entry references from the same collection */ - export function getEntries( - entries: { - collection: C; - slug: ValidContentEntrySlug; - }[] - ): Promise[]>; - export function getEntries( - entries: { - collection: C; - id: keyof DataEntryMap[C]; - }[] - ): Promise[]>; - - export function reference( - collection: C - ): import('astro/zod').ZodEffects< - import('astro/zod').ZodString, - C extends keyof ContentEntryMap - ? { - collection: C; - slug: ValidContentEntrySlug; - } - : { - 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( - collection: C - ): import('astro/zod').ZodEffects; - - type ReturnTypeOrOriginal = T extends (...args: any[]) => infer R ? R : T; - type InferEntrySchema = import('astro/zod').infer< - ReturnTypeOrOriginal['schema']> - >; - - type ContentEntryMap = { - - }; - - type DataEntryMap = { - - }; - - type AnyEntryMap = ContentEntryMap & DataEntryMap; - - type ContentConfig = never; -} +/// diff --git a/README-upstream.md b/README-upstream.md new file mode 100644 index 0000000..13a1cfa --- /dev/null +++ b/README-upstream.md @@ -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 :) diff --git a/README.md b/README.md index 13a1cfa..a4f777c 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file diff --git a/astro.config.mjs b/astro.config.mjs index 5f03caf..749986b 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -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 diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 1c7a5b7..84a1380 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -6,7 +6,7 @@ const year = new Date();
diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 41872e0..f5ef7b0 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -7,20 +7,17 @@ const site = Astro.site;

-

Hello, I'm your new Astro.js Blog Template πŸš€

+

Welcome to Goober.Cloud!

- 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 Angular 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 Angular elit. Tenetur vero esse non molestias eos Angular, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit. + We host a number of services, and signup for them is free!

- 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 Angular adipisicing elit. Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit. -

-

- Tenetur vero esse non molestias eos excepturi, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit.Lorem ipsum dolor sit amet consectetur Angular elit. Tenetur vero esse non molestias eos Angular, inventore atque cupiditate. Sed voluptatem quas omnis culpa, et odit. +

- + - - - - -