5 Commits

Author SHA1 Message Date
c7a9c2006a Update src/app/page.tsx 2025-12-27 15:26:26 +00:00
979c11d9df Update src/app/layout.tsx 2025-12-27 15:26:25 +00:00
1e0e0056f5 Update src/app/page.tsx 2025-12-27 15:13:01 +00:00
7ee5033788 Update src/app/layout.tsx 2025-12-27 15:12:59 +00:00
c296288100 Update src/app/globals.css 2025-12-27 15:10:22 +00:00
3 changed files with 15 additions and 15 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #ffffff;;
--card: #fcfcfc;;
--foreground: #001212e6;;
--primary-cta: #16d4f6;;
--secondary-cta: #ffffff;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--background: #000602;;
--card: #0d1d0d;;
--foreground: #e6ffe6;;
--primary-cta: #1cde5d;;
--secondary-cta: #0a1f0f;;
--accent: #2e6841;;
--background-accent: #0d6b32;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,13 +1,13 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { IBM_Plex_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins",
const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
@@ -48,7 +48,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={poppins.variable}
className={ibmPlexSans.variable}
>
<Tag />
{children}
@@ -1274,4 +1274,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -189,4 +189,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}