From 81c20901e6c321b0247fdbae4026a07b73595e04 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 07:36:09 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 22 insertions(+), 1397 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6528d9c..a787196 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,42 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter_Tight } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "OSLO - AI Video Generation Engine | Broadcast Quality in Seconds", description: "Transform natural language prompts into professional MP4 videos instantly. No editing skills, no crew, no compromise. Free trial available.", keywords: "AI video generation, video creation tool, video API, automatic video, SaaS video platform", metadataBase: new URL("https://oslo.ai"), - alternates: { - canonical: "https://oslo.ai"}, - openGraph: { - title: "OSLO - AI Video from Prompts, Instantly Professional", description: "Create broadcast-quality MP4 videos in seconds from natural language prompts. Perfect for marketing teams, content creators, and enterprises.", url: "https://oslo.ai", siteName: "OSLO", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhNKmIeslRex6OfMv3CHRKxyai/a-sleek-modern-ai-video-generation-inter-1773040861720-218e372d.png", alt: "OSLO AI video generation dashboard"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "OSLO - AI Video Generation Engine", description: "Broadcast-quality videos from prompts in seconds. No editing skills required.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhNKmIeslRex6OfMv3CHRKxyai/a-sleek-modern-ai-video-generation-inter-1773040861720-218e372d.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "OSLO - AI Video Generation", description: "Transform natural language into broadcast-quality MP4s instantly with OSLO."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +