diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index dd4307b..c2a9df2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +1,25 @@
import type { Metadata } from "next";
-import { Lato } from "next/font/google";
+import { Inter } from "next/font/google";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
+const inter = Inter({
+ variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Quick Creatives - AI Ad Generator for Static & Video Ads", description: "Generate professional static and video ads in seconds with AI. Perfect for agencies, e-commerce, SaaS, and any business category. Try free for 14 days.", keywords: "AI ad generator, video ads, static ads, ad creation, creative agency, marketing automation", metadataBase: new URL("https://quickcreatives.com"),
- alternates: {
- canonical: "https://quickcreatives.com"
- },
- openGraph: {
- title: "Quick Creatives - AI-Powered Ad Generation", description: "Create stunning ads in seconds with AI. Scale your creative production and boost campaign performance.", type: "website", siteName: "Quick Creatives", url: "https://quickcreatives.com", images: [{
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATkkwMdD0iTY5cZ1obi8rWoV7q/a-cutting-edge-ai-dashboard-interface-sh-1772624561767-b98bd32c.png", alt: "Quick Creatives AI dashboard showing ad generation capabilities"
- }]
- },
- twitter: {
- card: "summary_large_image", title: "Quick Creatives - AI Ad Generator", description: "Generate professional ads in seconds. Static & video ads with AI.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATkkwMdD0iTY5cZ1obi8rWoV7q/a-cutting-edge-ai-dashboard-interface-sh-1772624561767-b98bd32c.png"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Quick Creatives - Agency-Quality Ad Creatives in 48 Hours", description: "Get professional ad creatives delivered in 48 hours. Video ads, static creatives, and full-funnel packs for your brand."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-