diff --git a/src/components/Center.astro b/src/components/Center.astro deleted file mode 100644 index 117a7cd..0000000 --- a/src/components/Center.astro +++ /dev/null @@ -1,14 +0,0 @@ ---- -export interface Props { - direction: "row" | "column" | "row-reverse" | "column-reverse"; -} - -const { direction = "column" } = Astro.props; ---- - -
- -
diff --git a/src/components/Home.vue b/src/components/Home.vue new file mode 100644 index 0000000..4c2ebc3 --- /dev/null +++ b/src/components/Home.vue @@ -0,0 +1,68 @@ + + + diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro index fc1f8eb..a3b7cb4 100644 --- a/src/layouts/Page.astro +++ b/src/layouts/Page.astro @@ -15,10 +15,8 @@ const { title } = Astro.props; {title} - -
- -
+ + diff --git a/src/pages/index.astro b/src/pages/index.astro index 5f6f44d..5dd397d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,10 +1,8 @@ --- -import Center from "../components/Center.astro"; +import Home from "../components/Home.vue"; import Page from "../layouts/Page.astro"; --- - -
-

lmao

-
+ + diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 080ea94..b3d6ba1 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -3,14 +3,15 @@ module.exports = { content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], theme: { fontFamily: { - dm: ["DM Sans", "sans-serif"], - "dm-bold": ["DM Sans Bold", "sans-serif"], + dm: ["'DM Sans'", "sans-serif"], + "dm-bold": ["'DM Sans Bold'", "sans-serif"], }, colors: { transparent: "transparent", primary: "#121212", surface: "#232323", accent: "#1ed760", + error: "#ff1245", "on-primary": "#eeeeee", "on-surface": "#e0e0e0", "on-accent": "#121212",