4 Commits

Author SHA1 Message Date
dce8a849e3 Update src/app/page.tsx 2025-12-26 00:48:58 +00:00
7014e76d21 Update src/app/layout.tsx 2025-12-26 00:48:57 +00:00
293d8576fd Update src/app/globals.css 2025-12-26 00:48:56 +00:00
8accd349c2 Merge version_2 into main
Merge version_2 into main
2025-12-26 00:47:14 +00:00
3 changed files with 17 additions and 23 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #080000;
--card: #1e0d0d;
--foreground: #ffe6e6;
--primary-cta: #ff7a7a;
--secondary-cta: #1e0909;
--accent: #7b4242;
--background-accent: #65292c;
--background: #f8f9fa;
--card: #f0f2f5;
--foreground: #1e293b;
--primary-cta: #1e3a8a;
--secondary-cta: #ffffff;
--accent: #fbbf24;
--background-accent: #d97706;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter and --font-merriweather), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter and --font-merriweather), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -1,19 +1,13 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Merriweather } from "next/font/google";
import { Prata } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter",
const prata = Prata({
variable: "--font-prata",
subsets: ["latin"],
});
const merriweather = Merriweather({
variable: "--font-merriweather",
subsets: ["latin"],
weight: ["300", "400", "700", "900"],
weight: ["400"],
});
export const metadata: Metadata = {
@@ -47,7 +41,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${inter.variable} ${merriweather.variable} antialiased`}
className={`${prata.variable} antialiased`}
>
<Tag />
{children}
@@ -1273,4 +1267,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

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