Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d2fcb287d | |||
| 5aef21294c | |||
| a24d8be61a | |||
| f1bdc91e57 |
@@ -1,50 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } 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 interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: '--font-geist-mono',
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Video Production Portfolio | Cinematic Excellence", description: "Professional video producer showcasing cinematic work, creative studio setups, and visual storytelling with precision lighting and artistic direction.", keywords: "video production, cinematography, filmmaker, studio setup, cinematic video, professional videographer", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Video Production Portfolio | Cinematic Excellence", description: "Professional video producer showcasing cinematic work and creative studio setups", type: "website", siteName: "Studio"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Video Production Portfolio | Cinematic Excellence", description: "Professional video producer showcasing cinematic work and creative studio setups"},
|
||||
title: 'Studio',
|
||||
description: 'Professional video production and cinematic excellence',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1394,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -105,8 +105,6 @@ export default function LandingPage() {
|
||||
tagAnimation="blur-reveal"
|
||||
containerClassName="relative"
|
||||
textBoxClassName="backdrop-blur-sm bg-white/5 rounded-2xl p-8 border border-white/10 mb-12"
|
||||
titleClassName="text-white font-bold"
|
||||
descriptionClassName="text-white/80"
|
||||
cardClassName="group relative overflow-hidden rounded-xl backdrop-blur-sm bg-white/5 border border-white/10 hover:border-red-500/30 transition-all duration-300"
|
||||
imageClassName="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300"
|
||||
gridClassName="gap-4 md:gap-6"
|
||||
@@ -126,7 +124,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Video producer metrics and achievements"
|
||||
containerClassName="relative backdrop-blur-sm bg-gradient-to-b from-white/5 to-white/0 rounded-3xl border border-white/10 p-12 md:p-16"
|
||||
titleClassName="text-white text-2xl md:text-4xl font-bold text-center max-w-3xl mx-auto"
|
||||
titleClassName="text-white text-2xl md:text-4xl font-bold text-center max-w-3xl mx-auto before:content-['Our_Impact:_'] before:text-red-400 before:mr-2 before:text-base before:align-super"
|
||||
metricsContainerClassName="gap-6 md:gap-8"
|
||||
metricCardClassName="backdrop-blur-md bg-white/5 border border-white/10 hover:border-red-500/30 rounded-xl p-8 transition-all duration-300 group"
|
||||
metricIconClassName="text-red-400 group-hover:text-red-300 transition-colors"
|
||||
|
||||
Reference in New Issue
Block a user