4 Commits

Author SHA1 Message Date
e5340ab761 Update src/app/styles/base.css 2026-03-11 10:20:54 +00:00
2c20a5cf71 Update src/app/page.tsx 2026-03-11 10:20:54 +00:00
3e952d7042 Update src/app/layout.tsx 2026-03-11 10:20:54 +00:00
2cb5c13f6d Merge version_3 into main
Merge version_3 into main
2026-03-11 10:18:55 +00:00
3 changed files with 8 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
import { Cormorant_Garamond } from "next/font/google";
@@ -16,9 +16,9 @@ export const metadata: Metadata = {
};
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const cormorantGaramond = Cormorant_Garamond({
variable: "--font-cormorant-garamond", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export default function RootLayout({
@@ -29,7 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body className={`${cormorantGaramond.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -18,7 +18,7 @@ export default function LandingPage() {
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
borderRadius="pill"
contentWidth="small"
sizing="mediumLarge"
background="circleGradient"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-poppins), sans-serif;
font-family: var(--font-cormorant-garamond), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-poppins), sans-serif;
font-family: var(--font-cormorant-garamond), sans-serif;
}