diff --git a/src/components/Header.astro b/src/components/Header.astro index f56aecf..6afb5f7 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -8,6 +8,8 @@ /projects | /blog + | + /random \ No newline at end of file diff --git a/src/components/WorkInProgress.astro b/src/components/WorkInProgress.astro new file mode 100644 index 0000000..339ba60 --- /dev/null +++ b/src/components/WorkInProgress.astro @@ -0,0 +1,19 @@ +--- +--- +

work in progress...

+ + \ No newline at end of file diff --git a/src/components/cards/Card.astro b/src/components/cards/Card.astro index 14d9dbf..668e312 100644 --- a/src/components/cards/Card.astro +++ b/src/components/cards/Card.astro @@ -25,7 +25,6 @@ const { title, description, url } = Astro.props; justify-content: center; padding: 1em; - background-color: var(--mantle); border: 2px solid var(--surface-3); } diff --git a/src/components/chat/Chat.astro b/src/components/chat/Chat.astro index a845151..d922d20 100644 --- a/src/components/chat/Chat.astro +++ b/src/components/chat/Chat.astro @@ -1,2 +1,102 @@ --- --- +
+

+ chat + +

+ + + +
+ + + + \ No newline at end of file diff --git a/src/pages/about.astro b/src/pages/about.astro index 55dc467..49d658b 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -1,22 +1,7 @@ --- import Page from "@layouts/Page.astro"; +import WorkInProgress from "@components/WorkInProgress.astro"; --- -

work in progress...

-
- - \ No newline at end of file + + \ No newline at end of file diff --git a/src/pages/random.astro b/src/pages/random.astro new file mode 100644 index 0000000..9bb7b32 --- /dev/null +++ b/src/pages/random.astro @@ -0,0 +1,10 @@ +--- +import Chat from "@components/chat/Chat.astro" +import WorkInProgress from "@components/WorkInProgress.astro" +import Page from "@layouts/Page.astro" +--- + + +
+ +
\ No newline at end of file diff --git a/src/style.css b/src/style.css index 6a955e2..22e1f25 100644 --- a/src/style.css +++ b/src/style.css @@ -74,11 +74,6 @@ h1 { margin: 0.5em 0; } -h2 { - font-size: 1.5em; - margin: 0.4em 0; -} - p, a, li, span { font-size: 1.2em; }