├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── content └── posts │ └── hello-world.md ├── package.json ├── public ├── admin │ └── .gitignore ├── stylesheet.css └── uploads │ ├── comet icon.png │ ├── crown.png │ ├── crown_32.png │ └── gradient.jpg ├── src ├── components │ ├── Card.astro │ ├── bands.tsx │ ├── bands │ │ ├── flexContent.tsx │ │ ├── flexContentSchema.tsx │ │ ├── pageList.tsx │ │ ├── photo.tsx │ │ └── text.tsx │ ├── fieldComponents.tsx │ └── mdx-components.tsx ├── content │ ├── pages │ │ ├── about.mdx │ │ ├── contact.mdx │ │ ├── index.mdx │ │ ├── news-and-events.mdx │ │ ├── program.mdx │ │ ├── resources.mdx │ │ └── test-page.mdx │ └── site-settings │ │ └── index.json ├── env.d.ts ├── layout-components │ ├── Head.tsx │ ├── Header.tsx │ └── Layout.tsx ├── pages │ ├── [...slug].astro │ └── index.astro └── types.ts ├── tina ├── .gitignore ├── config.ts └── tina-lock.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /content/posts/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/content/posts/hello-world.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/package.json -------------------------------------------------------------------------------- /public/admin/.gitignore: -------------------------------------------------------------------------------- 1 | index.html 2 | assets/ -------------------------------------------------------------------------------- /public/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/public/stylesheet.css -------------------------------------------------------------------------------- /public/uploads/comet icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/public/uploads/comet icon.png -------------------------------------------------------------------------------- /public/uploads/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/public/uploads/crown.png -------------------------------------------------------------------------------- /public/uploads/crown_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/public/uploads/crown_32.png -------------------------------------------------------------------------------- /public/uploads/gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/public/uploads/gradient.jpg -------------------------------------------------------------------------------- /src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/Card.astro -------------------------------------------------------------------------------- /src/components/bands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/bands.tsx -------------------------------------------------------------------------------- /src/components/bands/flexContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/bands/flexContent.tsx -------------------------------------------------------------------------------- /src/components/bands/flexContentSchema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/bands/flexContentSchema.tsx -------------------------------------------------------------------------------- /src/components/bands/pageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/bands/pageList.tsx -------------------------------------------------------------------------------- /src/components/bands/photo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/bands/photo.tsx -------------------------------------------------------------------------------- /src/components/bands/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/bands/text.tsx -------------------------------------------------------------------------------- /src/components/fieldComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/fieldComponents.tsx -------------------------------------------------------------------------------- /src/components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/components/mdx-components.tsx -------------------------------------------------------------------------------- /src/content/pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/content/pages/about.mdx -------------------------------------------------------------------------------- /src/content/pages/contact.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contact 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /src/content/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/content/pages/index.mdx -------------------------------------------------------------------------------- /src/content/pages/news-and-events.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: News & Events 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /src/content/pages/program.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Program 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /src/content/pages/resources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Resources 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /src/content/pages/test-page.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Test page 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /src/content/site-settings/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/content/site-settings/index.json -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layout-components/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/layout-components/Head.tsx -------------------------------------------------------------------------------- /src/layout-components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/layout-components/Header.tsx -------------------------------------------------------------------------------- /src/layout-components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/layout-components/Layout.tsx -------------------------------------------------------------------------------- /src/pages/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/pages/[...slug].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/src/types.ts -------------------------------------------------------------------------------- /tina/.gitignore: -------------------------------------------------------------------------------- 1 | __generated__ -------------------------------------------------------------------------------- /tina/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/tina/config.ts -------------------------------------------------------------------------------- /tina/tina-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/tina/tina-lock.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revenciel/Tina-Astro-Starter/HEAD/tsconfig.json --------------------------------------------------------------------------------