diff options
| author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-10-16 21:23:42 +0200 |
|---|---|---|
| committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-10-16 21:23:42 +0200 |
| commit | 11fd60da81dd78f5fb99bc061078e1b13bbe082a (patch) | |
| tree | 48c44587ac728b23c1557f770c1661f43cb492d3 /apps/website/src/pages | |
| parent | 33197b013f3c643d6c6dada41470459d2f90b4c0 (diff) | |
| download | Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.gz Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.bz2 Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.zip | |
Button + Section component, new Icon component + new colors
Diffstat (limited to 'apps/website/src/pages')
| -rw-r--r-- | apps/website/src/pages/index.astro | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/apps/website/src/pages/index.astro b/apps/website/src/pages/index.astro index 837f866..6cf0165 100644 --- a/apps/website/src/pages/index.astro +++ b/apps/website/src/pages/index.astro @@ -2,11 +2,23 @@ import Header from "@components/base/Header.astro"; import Layout from "../layouts/Layout.astro"; import Logo from "@components/logos/Logo.astro"; +import Section from "@components/base/Section.astro"; +import Button from "@components/base/Button.astro"; + +import Icon from "@components/icons/Icon.astro"; --- <Layout> - <section> - <Logo size={44} logo="oneconfig.minimal" /> - <Header size="xl">Meet <b>OneConfig</b>, the library for <b>everyone</b>.</Header> - </section> + <Section> + <Logo size={56} logo="oneconfig.minimal" /> + <Header align="center" size="xl" class="max-w-[500px]">Meet <b>OneConfig</b>, the library designed for <b>everyone</b>.</Header> + <div class="flex flex-row justify-center items-center gap-2"> + <Button iconLeft="download" text="Download" size="lg" /> + <Button href="/documentation" iconLeft="book-open" style="secondary" text="Documentation" size="lg" /> + </div> + </Section> + <Section> + <Logo size={56} logo="oneconfig.minimal" /> + <Header align="center" size="xl" class="max-w-[500px]">Meet <b>OneConfig</b>, the library designed for <b>everyone</b>.</Header> + </Section> </Layout> |
