3 Commits

Author SHA1 Message Date
ec60e996ad Bob AI: Change the global font family to Inter across the entire web 2026-02-23 20:56:00 +00:00
db321df45b Bob AI: change the color button to black and also change t... 2026-02-23 20:47:38 +00:00
d0f47cd8df Merge version_1 into main
Merge version_1 into main
2026-02-23 20:31:47 +00:00
2 changed files with 2 additions and 7 deletions

View File

@@ -1,14 +1,9 @@
import type { Metadata } from "next";
import { Noto_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const notoSans = Noto_Sans({
variable: "--font-noto-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
@@ -26,7 +21,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${notoSans.variable} ${inter.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -20,7 +20,7 @@ export default function LandingPage() {
contentWidth="smallMedium"
sizing="medium"
background="noiseDiagonalGradient"
cardStyle="soft-shadow"
cardStyle="glass"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"