3 Commits

Author SHA1 Message Date
814d429868 Update src/app/page.tsx 2026-01-27 03:51:00 +00:00
cc3ca36448 Update src/app/layout.tsx 2026-01-27 03:50:59 +00:00
d57e19f4d6 Update src/app/globals.css 2026-01-27 03:50:58 +00:00
3 changed files with 19 additions and 20 deletions

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;; /* --background: #0a0a0a;;
--card: #ffffff;; --card: #1a1a1a;;
--foreground: #1c1c1c;; --foreground: #ffffffe6;;
--primary-cta: #1c1c1c;; --primary-cta: #fde047;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;
--accent: #15479c;; --accent: #fde047;;
--background-accent: #a8cce8;; */ --background-accent: #333333;; */
--background: #f5f5f5;; --background: #0a0a0a;;
--card: #ffffff;; --card: #1a1a1a;;
--foreground: #1c1c1c;; --foreground: #ffffffe6;;
--primary-cta: #1c1c1c;; --primary-cta: #fde047;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;
--accent: #15479c;; --accent: #fde047;;
--background-accent: #a8cce8;; --background-accent: #333333;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,12 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Cormorant_Garamond } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const cormorantGaramond = Cormorant_Garamond({ const inter = Inter({
variable: "--font-cormorant-garamond", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -37,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={cormorantGaramond.variable} className={inter.variable}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -16,7 +16,7 @@ export default function LandingPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight" defaultTextAnimation="background-highlight"
borderRadius="pill" borderRadius="sharp"
contentWidth="mediumLarge" contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles" sizing="mediumLargeSizeMediumTitles"
background="plain" background="plain"