6 Commits

Author SHA1 Message Date
e5875c694d Merge version_4 into main
Merge version_4 into main
2026-02-25 13:38:26 +00:00
4cf3cd9cbf Update src/app/styles/base.css 2026-02-25 13:38:22 +00:00
f3a9f00f0b Update src/app/page.tsx 2026-02-25 13:38:21 +00:00
e42cf53403 Update src/app/layout.tsx 2026-02-25 13:38:20 +00:00
c870d628bf Bob AI: change colors to more vibrant 2026-02-25 15:32:06 +02:00
991089ae1a Merge version_2 into main
Merge version_2 into main
2026-02-25 13:14:51 +00:00
4 changed files with 18 additions and 18 deletions

View File

@@ -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>
);
}
}

View File

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

View File

@@ -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;
}

View File

@@ -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);