5 Commits

Author SHA1 Message Date
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 type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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: "ShortForm - Short-Form Video Marketing", description: "Professional short-form video content creation and marketing solutions"};
title: "Short-Form Marketing Agency", description: "Professional short-form video content creation and marketing strategy", siteName: "ShortForm", type: "website"},
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 className={inter.className}>{children}
<body
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1409,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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