Skip to content

Commit 9844631

Browse files
committed
restructured the folder and files also also improve the footer
1 parent b0b1a06 commit 9844631

19 files changed

Lines changed: 17 additions & 20 deletions

src/app/(site)/layout.tsx

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/app/layout.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { ThemeProvider } from "@/components/providers/theme-provider";
1+
import { ThemeProvider } from "@/components/theme-provider";
2+
import { SiteChrome } from "@/components/site-chrome";
23
import { Arima } from "next/font/google";
34
import type { Metadata, Viewport } from "next";
4-
import "@/styles/globals.css";
5+
import "./globals.css";
56

67
const arima = Arima({
78
subsets: ["latin"],
@@ -64,7 +65,9 @@ export default function RootLayout({
6465
return (
6566
<html lang="en" suppressHydrationWarning>
6667
<body className={`${arima.variable} min-h-screen antialiased`}>
67-
<ThemeProvider>{children}</ThemeProvider>
68+
<ThemeProvider>
69+
<SiteChrome>{children}</SiteChrome>
70+
</ThemeProvider>
6871
</body>
6972
</html>
7073
);
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { AutoScrollShowcase } from "@/components/organisms/auto-scroll-showcase";
2-
import { BentoGrid } from "@/components/organisms/bento-grid";
3-
import { Hero } from "@/components/organisms/hero";
4-
import { Sandbox } from "@/components/organisms/sandbox";
5-
import { SiteFooter } from "@/components/organisms/site-footer";
1+
import { AutoScrollShowcase } from "@/components/auto-scroll-showcase";
2+
import { BentoGrid } from "@/components/bento-grid";
3+
import { Hero } from "@/components/hero";
4+
import { Sandbox } from "@/components/sandbox";
5+
import { SiteFooter } from "@/components/site-footer";
66
import Link from "next/link";
77

88
export default function Home() {
File renamed without changes.

0 commit comments

Comments
 (0)