26 Commits

Author SHA1 Message Date
f0ec12fb4b Merge version_3 into main
Merge version_3 into main
2026-02-09 13:09:05 +00:00
5d3998d9c9 Update theme fonts 2026-02-09 13:09:00 +00:00
69a1fc96f2 Update theme fonts 2026-02-09 13:08:59 +00:00
73b43246c7 Merge version_3 into main
Merge version_3 into main
2026-02-09 13:00:34 +00:00
a46593c9c5 Update theme fonts 2026-02-09 13:00:29 +00:00
013f6dbc4a Update theme fonts 2026-02-09 13:00:28 +00:00
223efb2a3c Merge version_3 into main
Merge version_3 into main
2026-02-09 12:50:47 +00:00
b0fc442d12 Update theme fonts 2026-02-09 12:50:43 +00:00
a9593a9928 Update theme fonts 2026-02-09 12:50:42 +00:00
304b9c3845 Merge version_3 into main
Merge version_3 into main
2026-02-09 12:45:11 +00:00
1db4d730ef Update theme fonts 2026-02-09 12:45:06 +00:00
a07a665123 Update theme fonts 2026-02-09 12:45:05 +00:00
689043ac8d Merge version_3 into main
Merge version_3 into main
2026-02-09 12:39:15 +00:00
19ae9bf2d8 Update theme fonts 2026-02-09 12:39:10 +00:00
37180a1b9e Update theme fonts 2026-02-09 12:39:09 +00:00
a25a64f866 Merge version_3 into main
Merge version_3 into main
2026-02-09 12:33:27 +00:00
5ebfa1aeb8 Update theme fonts 2026-02-09 12:33:22 +00:00
dc16afff9b Update theme fonts 2026-02-09 12:33:22 +00:00
0ec0d4c638 Merge version_3 into main
Merge version_3 into main
2026-02-06 11:38:45 +00:00
fbcba7d86d Update src/app/styles/base.css 2026-02-06 11:38:40 +00:00
4492331c0c Update src/app/layout.tsx 2026-02-06 11:38:39 +00:00
c750cdfee4 Merge version_2 into main
Merge version_2 into main
2026-02-06 11:19:34 +00:00
d070872f59 Update src/app/styles/variables.css 2026-02-06 11:19:29 +00:00
47eb054885 Update src/app/page.tsx 2026-02-06 11:19:28 +00:00
f06388bf48 Update src/app/layout.tsx 2026-02-06 11:19:27 +00:00
2471296fa6 Merge version_1 into main
Merge version_1 into main
2026-02-06 11:15:43 +00:00
4 changed files with 77 additions and 24 deletions

View File

@@ -1,11 +1,12 @@
import type { Metadata } from "next";
import { Work_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
const workSans = Work_Sans({
variable: "--font-work-sans", subsets: ["latin"],
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -29,6 +30,60 @@ export const metadata: Metadata = {
}
};
const notoSans = Noto_Sans({
variable: "--font-noto-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const workSans = Work_Sans({
variable: "--font-work-sans",
subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -37,9 +92,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${workSans.variable} antialiased`}
>
<body ${inter.variable} antialiased`} ${sourceSans3.variable} {notoSans.variable`} {inter.variable}} antialiased`} className={`${montserrat.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
@@ -1264,4 +1317,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -278,4 +278,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

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

View File

@@ -2,21 +2,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #341f51;;
--secondary-cta: #ffffff;;
--accent: #6139e6;;
--background-accent: #b3a8e8;; */
/* --background: #000802;;
--card: #0b1a0b;;
--foreground: #e6ffe6;;
--primary-cta: #80da9b;;
--secondary-cta: #07170b;;
--accent: #38714a;;
--background-accent: #2c6541;; */
--background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #341f51;;
--secondary-cta: #ffffff;;
--accent: #6139e6;;
--background-accent: #b3a8e8;;
--background: #000802;;
--card: #0b1a0b;;
--foreground: #e6ffe6;;
--primary-cta: #80da9b;;
--secondary-cta: #07170b;;
--accent: #38714a;;
--background-accent: #2c6541;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);