5 Commits

Author SHA1 Message Date
9c8bc8d5d9 Update theme fonts 2026-02-19 02:17:55 +00:00
5417c0bd18 Update theme fonts 2026-02-19 02:17:54 +00:00
75e71d4235 Update src/app/seo/page.tsx 2026-02-19 02:14:19 +00:00
c79d701f57 Update src/app/page.tsx 2026-02-19 02:14:18 +00:00
ba73324b73 Merge version_3 into main
Merge version_3 into main
2026-02-19 02:11:10 +00:00
4 changed files with 17 additions and 8 deletions

View File

@@ -4,6 +4,8 @@ import { Inter } 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";
import { Open_Sans } from "next/font/google";
import { Work_Sans } from "next/font/google";
const publicSans = Public_Sans({ const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"], variable: "--font-public-sans", subsets: ["latin"],
@@ -32,6 +34,15 @@ export const metadata: Metadata = {
} }
}; };
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
const workSans = Work_Sans({
variable: "--font-work-sans",
subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: Readonly<{
@@ -40,9 +51,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body className={`${openSans.variable} ${workSans.variable} antialiased`}>
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag /> <Tag />
{children} {children}

View File

@@ -68,7 +68,7 @@ export default function LandingPage() {
features={[ features={[
{ {
id: "1", title: "Search Engine Optimization (SEO)", tags: ["Organic Traffic", "Long-term Growth"], id: "1", title: "Search Engine Optimization (SEO)", tags: ["Organic Traffic", "Long-term Growth"],
imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg", imageAlt: "SEO optimization and search engine marketing strategies" imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg", imageAlt: "SEO optimization and search engine marketing strategies", onFeatureClick: () => window.location.href = "/seo"
}, },
{ {
id: "2", title: "Pay-Per-Click Advertising (PPC)", tags: ["Immediate Results", "Budget Control"], id: "2", title: "Pay-Per-Click Advertising (PPC)", tags: ["Immediate Results", "Budget Control"],
@@ -260,4 +260,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

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

View File

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