Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-04 11:05:24 +00:00
2 changed files with 20 additions and 50 deletions

View File

@@ -1,49 +1,20 @@
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 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -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: #ff5733;;
--secondary-cta: #f9f9f9;;
--accent: #85F1FF;;
--background-accent: #FFA39F;; */
--background: #f7f6f7;;
--card: #ffffff;;
--foreground: #0c1325;;
--primary-cta: #0b07ff;;
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #000000;;
--primary-cta: #ff5733;;
--primary-cta-text: #f7f6f7;;
--secondary-cta: #ffffff;;
--secondary-cta: #f9f9f9;;
--secondary-cta-text: #0c1325;;
--accent: #93b7ff;;
--background-accent: #a8bae8;;
--accent: #85F1FF;;
--background-accent: #FFA39F;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);