Merge version_2 into main #2
@@ -1,59 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Geist, Geist_Mono } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: '--font-geist-sans',
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: '--font-geist-mono',
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Ink Frames Studio - Professional Video Production & Editing", description: "Cinematic video production, professional editing, and creative storytelling for brands and entrepreneurs. Based in Toulouse, France. Transform your vision into compelling visual content.", keywords: "video production, video editing, cinematic content, film production, post-production, audiovisual, video storytelling, creative direction", metadataBase: new URL("https://inkframesstudio.com"),
|
||||
alternates: {
|
||||
canonical: "https://inkframesstudio.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Ink Frames Studio - Cinematic Visual Storytelling", description: "Professional video production and post-production services specializing in cinematic content creation and storytelling.", url: "https://inkframesstudio.com", siteName: "Ink Frames Studio", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUb2InCzxwu7c80CwrlnVVediI/a-cinematic-film-production-hero-visual--1772650044672-b44ef2bf.png", alt: "A cinematic film production hero visual showing camera equipment, film reels, and production lightin"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Ink Frames Studio - Professional Video Production", description: "Cinematic storytelling through expert video editing and production.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUb2InCzxwu7c80CwrlnVVediI/a-cinematic-film-production-hero-visual--1772650044672-b44ef2bf.png"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
title: 'Ink Frames Studio',
|
||||
description: 'Professional video production and post-production services',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1394,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ export default function LandingPage() {
|
||||
description="Transform your ideas into powerful visual stories through cinematic video production, professional editing, and creative direction that captivates audiences."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "View Portfolio", href: "#portfolio" },
|
||||
{ text: "Watch Our Work", href: "#portfolio" },
|
||||
{ text: "Start a Project", href: "#contact" }
|
||||
]}
|
||||
layoutOrder="default"
|
||||
|
||||
Reference in New Issue
Block a user