6 Commits

Author SHA1 Message Date
f9fba514ae Merge version_2 into main
Merge version_2 into main
2026-03-04 14:26:22 +00:00
4c552b82c2 Update src/app/page.tsx 2026-03-04 14:26:18 +00:00
1f5b1540f8 Update src/app/layout.tsx 2026-03-04 14:26:18 +00:00
26712d6c04 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:15:41 +00:00
778b8e1403 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:14:29 +00:00
ff43221884 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:13:01 +00:00
2 changed files with 7 additions and 35 deletions

View File

@@ -1,47 +1,20 @@
import type { Metadata } from "next";
import { Public_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 publicSans = Public_Sans({
variable: "--font-public-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: "Short-Form Marketing Agency | Video Content & Strategy", description: "Professional short-form video content creation and marketing strategy for brands. Drive engagement across TikTok, Instagram Reels, YouTube Shorts.", keywords: "short-form video, marketing agency, content creation, TikTok, Instagram Reels, YouTube Shorts", openGraph: {
title: "Short-Form Marketing Agency", description: "Professional short-form video content creation and marketing strategy", siteName: "ShortForm", type: "website"},
robots: {
index: true,
follow: true,
},
};
title: "ShortForm - Short-Form Video Marketing", description: "Professional short-form video content creation and marketing solutions"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -117,7 +117,7 @@ export default function LandingPage() {
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Contact Us"
buttonText="Book Your Consultation"
termsText="We respect your privacy. Unsubscribe at any time."
/>
</div>