Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| db837f76cd | |||
| b3b15a19a3 | |||
| 2208060087 | |||
| fea011158e | |||
| 920fcdeefb | |||
| 4711e64cd4 | |||
| 385b1be9f0 |
@@ -1,69 +1,16 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Phoenix SEO Services | Soderman SEO Company",
|
title: "Soderman SEO", description: "Phoenix SEO services that drive real leads"};
|
||||||
description: "Local SEO expert in Phoenix helping businesses rank higher on Google and generate consistent leads. 4.4★ rated. Free SEO audit.",
|
|
||||||
keywords: "Phoenix SEO, SEO company Phoenix, local SEO, Google rankings, Phoenix digital marketing",
|
|
||||||
metadataBase: new URL("https://sodermanseo.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://sodermanseo.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Phoenix SEO That Drives Real Leads",
|
|
||||||
description: "Helping Phoenix businesses rank higher on Google, get more traffic, and generate consistent leads.",
|
|
||||||
siteName: "Soderman SEO",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ac2nCdvHHRqdz2CEhIs8MbJ9st/a-modern-seo-dashboard-interface-showing-1772877777174-472f7496.png",
|
|
||||||
alt: "Phoenix SEO results and analytics",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Phoenix SEO Services | Soderman SEO",
|
|
||||||
description: "Get qualified leads through proven SEO strategies. Free audit available.",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ac2nCdvHHRqdz2CEhIs8MbJ9st/a-modern-seo-dashboard-interface-showing-1772877777174-472f7496.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1431,7 +1378,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #fcf6ec;
|
--background: #0a0a0a;
|
||||||
--card: #f3ede2;
|
--card: #1a1a1a;
|
||||||
--foreground: #2e2521;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #2e2521;
|
--primary-cta: #e6e6e6;
|
||||||
--primary-cta-text: #fcf6ec;
|
--primary-cta-text: #fcf6ec;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #2e2521;
|
--secondary-cta-text: #2e2521;
|
||||||
--accent: #b2a28b;
|
--accent: #737373;
|
||||||
--background-accent: #b2a28b;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* 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