refactor(all): shadcn rewrite
This commit is contained in:
parent
a3c7945750
commit
e111bdffb4
34 changed files with 1003 additions and 173 deletions
|
@ -1,10 +1,12 @@
|
|||
---
|
||||
import NotFound from "@components/NotFound.astro";
|
||||
import Logo from "@components/Logo.astro";
|
||||
import Layout from "@layouts/Layout.astro";
|
||||
import Layout from "@/layouts/Layout.astro";
|
||||
import ThemeToggle from "@/components/ThemeToggle.astro";
|
||||
import NotFound from "@/components/NotFound.astro";
|
||||
import Logo from "@/components/Logo.astro";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<ThemeToggle />
|
||||
<NotFound />
|
||||
<Logo />
|
||||
</Layout>
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
---
|
||||
import Text from "@components/Text.astro";
|
||||
import Logo from "@components/Logo.astro";
|
||||
import Links from "@components/Links.astro";
|
||||
import Layout from "@layouts/Layout.astro";
|
||||
import Layout from "@/layouts/Layout.astro";
|
||||
import ThemeToggle from "@/components/ThemeToggle.astro";
|
||||
import Text from "@/components/Text.astro";
|
||||
import Logo from "@/components/Logo.astro";
|
||||
import Links from "@/components/Links.astro";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Text />
|
||||
<Logo />
|
||||
<Links />
|
||||
<ThemeToggle />
|
||||
<Text />
|
||||
<Logo />
|
||||
<Links />
|
||||
</Layout>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue