diff --git a/.prettierignore b/.prettierignore index b4577d8..ab53970 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,6 +1,4 @@ # Ignore artifacts: build coverage - -# Ignore archive -**/archive/**/* \ No newline at end of file +dist \ No newline at end of file diff --git a/apps/cloud/astro.config.mjs b/apps/cloud/astro.config.mjs index 461bd30..bd99ba7 100644 --- a/apps/cloud/astro.config.mjs +++ b/apps/cloud/astro.config.mjs @@ -1,8 +1,11 @@ -import { defineConfig } from 'astro/config'; +import { defineConfig } from "astro/config"; import tailwind from "@astrojs/tailwind"; +import sitemap from "@astrojs/sitemap"; +import react from "@astrojs/react"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind()] -}); \ No newline at end of file + site: "https://cloud.xprtz.net", + integrations: [tailwind(), sitemap(), react()], +}); diff --git a/apps/cloud/package.json b/apps/cloud/package.json index ceabfb0..f66a213 100644 --- a/apps/cloud/package.json +++ b/apps/cloud/package.json @@ -11,9 +11,17 @@ }, "dependencies": { "@astrojs/check": "^0.7.0", + "@astrojs/react": "^3.4.0", + "@astrojs/sitemap": "^3.1.5", "@astrojs/tailwind": "^5.1.0", + "@headlessui/react": "^2.0.4", + "@heroicons/react": "^2.1.3", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "@xprtz/ui": "link:../../libs/ui", "astro": "^4.9.2", + "react": "^18.3.1", + "react-dom": "^18.3.1", "tailwindcss": "^3.4.3" }, "author": "Alex Schouls" diff --git a/apps/cloud/src/images/logo.svg b/apps/cloud/src/images/logo.svg new file mode 100644 index 0000000..b2fcb5b --- /dev/null +++ b/apps/cloud/src/images/logo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/cloud/src/layouts/layout.astro b/apps/cloud/src/layouts/layout.astro new file mode 100644 index 0000000..c270cec --- /dev/null +++ b/apps/cloud/src/layouts/layout.astro @@ -0,0 +1,19 @@ +--- +import { BaseHead, Footer, Header } from '@xprtz/ui' +import Logo from '../images/logo.svg' +const { title, description } = Astro.props; +--- + + + + + + + +
+
+ +
+