Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dce8a849e3 | |||
| 7014e76d21 | |||
| 293d8576fd | |||
| 8accd349c2 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #080000;
|
--background: #f8f9fa;
|
||||||
--card: #1e0d0d;
|
--card: #f0f2f5;
|
||||||
--foreground: #ffe6e6;
|
--foreground: #1e293b;
|
||||||
--primary-cta: #ff7a7a;
|
--primary-cta: #1e3a8a;
|
||||||
--secondary-cta: #1e0909;
|
--secondary-cta: #ffffff;
|
||||||
--accent: #7b4242;
|
--accent: #fbbf24;
|
||||||
--background-accent: #65292c;
|
--background-accent: #d97706;
|
||||||
|
|
||||||
/* 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);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter and --font-merriweather), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter and --font-merriweather), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,19 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Prata } from "next/font/google";
|
||||||
import { Merriweather } 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 inter = Inter({
|
const prata = Prata({
|
||||||
variable: "--font-inter",
|
variable: "--font-prata",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
weight: ["400"],
|
||||||
|
|
||||||
const merriweather = Merriweather({
|
|
||||||
variable: "--font-merriweather",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -47,7 +41,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${inter.variable} ${merriweather.variable} antialiased`}
|
className={`${prata.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1273,4 +1267,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client";
|
"use client"
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
||||||
@@ -348,4 +348,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user