Compare commits
23 Commits
version_13
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 77ad3a0b37 | |||
| 349c115e89 | |||
| 809ccc9193 | |||
| bf8bfd8a5d | |||
| ea860cdf50 | |||
| 74a96d623f | |||
| 94e133f4ea | |||
| 0da6a3d154 | |||
| f9c2a174d9 | |||
| 88003549e9 | |||
| de7f7cf56d | |||
| 322f7a7b72 | |||
| c84d74c709 | |||
| 1a61302e9f | |||
| 66582b121c | |||
| 24ffc77b94 | |||
| ad11317192 | |||
| 4a37add1c2 | |||
| 184cce2dab | |||
| 19736c1111 | |||
| 1b200290b5 | |||
| 16b1b598a5 | |||
| 187eb15a15 |
@@ -30,9 +30,11 @@ export const metadata: Metadata = {
|
||||
|
||||
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -43,7 +45,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} antialiased`}>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #010912;
|
||||
--background: #011012;
|
||||
--card: #152840;
|
||||
--foreground: #e6f0ff;
|
||||
--primary-cta: #cee7ff;
|
||||
|
||||
Reference in New Issue
Block a user