Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c8bc8d5d9 | |||
| 5417c0bd18 | |||
| 75e71d4235 | |||
| c79d701f57 | |||
| ba73324b73 | |||
| 4068d2138f | |||
| c0e32d0660 |
@@ -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}
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -185,4 +185,4 @@ export default function SEOPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #e6f0ffe6;;
|
||||||
--primary-cta: #511f1f;;
|
--primary-cta: #1f5fb8;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #0e1a29;;
|
||||||
--accent: #e63946;;
|
--accent: #0798ff;;
|
||||||
--background-accent: #e8bea8;; */
|
--background-accent: #004a93;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #e6f0ffe6;;
|
||||||
--primary-cta: #511f1f;;
|
--primary-cta: #1f5fb8;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #0e1a29;;
|
||||||
--accent: #e63946;;
|
--accent: #0798ff;;
|
||||||
--background-accent: #e8bea8;;
|
--background-accent: #004a93;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user