Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e5875c694d | |||
| 4cf3cd9cbf | |||
| f3a9f00f0b | |||
| e42cf53403 | |||
| c870d628bf |
@@ -1,12 +1,12 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Cormorant_Garamond } from "next/font/google";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const cormorantGaramond = Cormorant_Garamond({
|
||||
variable: "--font-cormorant-garamond", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -22,7 +22,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${cormorantGaramond.variable} antialiased`}
|
||||
className={`${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1397,4 +1397,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -189,4 +189,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-font-family: var(--font-cormorant-garamond), serif;), sans-serif;
|
||||
font-family: var(--font-font-family: var(--font-inter-tight), serif;), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-font-family: var(--font-cormorant-garamond), serif;), sans-serif;
|
||||
font-family: var(--font-font-family: var(--font-inter-tight), serif;), sans-serif;
|
||||
}
|
||||
|
||||
@@ -4,21 +4,21 @@
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #032419;;
|
||||
--primary-cta: #2bb889;;
|
||||
--foreground: #001a0f;;
|
||||
--primary-cta: #00d084;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #09b97e;;
|
||||
--background-accent: #a8e8c3;; */
|
||||
--accent: #00ff99;;
|
||||
--background-accent: #66f0d9;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--background: #f0f0f0;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #032419;;
|
||||
--primary-cta: #2bb889;;
|
||||
--foreground: #001a0f;;
|
||||
--primary-cta: #00d084;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #032419;;
|
||||
--accent: #09b97e;;
|
||||
--background-accent: #a8e8c3;;
|
||||
--accent: #00ff99;;
|
||||
--background-accent: #66f0d9;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user