Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-09 07:37:36 +00:00
2 changed files with 5 additions and 9 deletions

View File

@@ -2,8 +2,6 @@ import type { Metadata } from "next";
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 interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
@@ -11,7 +9,8 @@ const interTight = Inter_Tight({
});
export const metadata: Metadata = {
title: "OSLO - AI Video Generation", description: "Transform natural language into broadcast-quality MP4s instantly with OSLO."};
title: "OSLO - AI Video Generation", description: "Transform natural language into broadcast-quality MP4s instantly with OSLO."
};
export default function RootLayout({
children,
@@ -21,10 +20,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body className={`${interTight.variable}`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,4 +1405,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -9,7 +9,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Sparkles, Zap, Users, DollarSign, HelpCircle, Building, User, Video, Film, Cpu, Wand2, Zoomable } from 'lucide-react';
import { Sparkles, Zap, Users, DollarSign, HelpCircle, Building, User, Video, Film, Cpu, Wand2 } from 'lucide-react';
export default function LandingPage() {
return (