Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e3493c335 | |||
| ead9e7ece4 | |||
| 83dec13e98 | |||
| 1772d15b23 | |||
| cc4b5de67b | |||
| 97d825dd57 | |||
| 5b7ec75c7f | |||
| c83d0aabd9 | |||
| e36efad300 | |||
| 143d25b604 | |||
| 69935a4e57 | |||
| d25cb10aa7 | |||
| 01243f8ed3 | |||
| ec671cfe20 | |||
| fdee25c564 | |||
| 0eca440a81 | |||
| c4c23cf421 | |||
| 8d2b20d849 | |||
| 5d39a01a69 | |||
| 67bad36452 | |||
| c95b69c336 | |||
| 9bfb4efbb9 | |||
| 429b5e2b84 |
@@ -7,6 +7,11 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
import { Inter_Tight } from "next/font/google";
|
||||||
|
import { Mulish } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Montserrat } from "next/font/google";
|
||||||
|
import { Lato } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -40,14 +45,15 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
|
||||||
variable: "--font-libre-baskerville",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
const inter = Inter({
|
const lato = Lato({
|
||||||
variable: "--font-inter",
|
variable: "--font-lato",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "300", "400", "700", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -58,7 +64,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
<body className={`${lato.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -19,8 +19,8 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="compact"
|
contentWidth="compact"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="floatingGradient"
|
background="noise"
|
||||||
cardStyle="glass-depth"
|
cardStyle="soft-shadow"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-lato), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-libre-baskerville), serif;
|
font-family: var(--font-lato), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #0a0a0a;
|
||||||
--card: #1a1a1a;
|
--card: #1a1a1a;
|
||||||
--foreground: #f0f8ffe6;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #cee7ff;
|
--primary-cta: #e6e6e6;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #1a1a1a;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #f0f8ffe6;
|
--secondary-cta-text: #ffffffe6;
|
||||||
--accent: #737373;
|
--accent: #737373;
|
||||||
--background-accent: #737373;
|
--background-accent: #737373;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user