Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 73084e82d0 | |||
| 0bcd99dfbc | |||
| a799c5959d | |||
| 976302570b | |||
| d5247a24f4 | |||
| b58f9f518b | |||
| 4ae5fb6330 | |||
| 4ce63ac03e | |||
| ab71c0236e | |||
| b9abad4035 | |||
| afe8243136 |
@@ -1,49 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Kat - Social Media Marketing Agency | Brand Growth Specialist", description: "Grow your brand on social media with Kat's strategic content, authentic engagement, and data-driven growth tactics. Helping brands scale on Instagram & TikTok.", keywords: "social media marketing, Instagram growth, TikTok strategy, content creation, brand growth, digital marketing", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Kat - Social Media Marketing Agency", description: "Grow your brand on social media with strategic content and proven growth tactics.", type: "website", siteName: "Kat Marketing"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Kat - Social Media Marketing Agency", description: "Grow your brand on social media with strategic content and proven growth tactics."},
|
||||
title: "Kat - Social Media Marketing", description: "Grow your brand with creative content and modern social media marketing strategy."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0b07ff;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #93b7ff;;
|
||||
--background-accent: #a8bae8;; */
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000000;;
|
||||
--primary-cta: #85F1FF;;
|
||||
--secondary-cta: #FFA39F;;
|
||||
--accent: #FFBB87;;
|
||||
--background-accent: #FFBB87;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0b07ff;;
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000000;;
|
||||
--primary-cta: #85F1FF;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #FFA39F;;
|
||||
--secondary-cta-text: #0c1325;;
|
||||
--accent: #93b7ff;;
|
||||
--background-accent: #a8bae8;;
|
||||
--accent: #FFBB87;;
|
||||
--background-accent: #FFBB87;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user