Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c8bc8d5d9 | |||
| 5417c0bd18 | |||
| 75e71d4235 | |||
| c79d701f57 | |||
| ba73324b73 |
@@ -4,6 +4,8 @@ import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Work_Sans } from "next/font/google";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
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({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -40,9 +51,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${openSans.variable} ${workSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
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"],
|
||||
@@ -260,4 +260,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -185,4 +185,4 @@ export default function SEOPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-work-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user