Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-03-09 21:46:35 +00:00
2 changed files with 10 additions and 22 deletions

View File

@@ -1,14 +1,11 @@
import type { Metadata } from "next";
import { Lexend } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
const lexend = Lexend({
variable: "--font-lexend", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Blackroom Collective - Premium Creative Solutions", description: "High-end video production, professional photography, custom web design, and AI-powered automation solutions for luxury brands and premium events."};
title: "Blackroom Collective | Premium Creative Solutions", description: "High-end video production, photography, web design, and AI-powered automation for premium brands and events."};
export default function RootLayout({
children,
@@ -16,21 +13,8 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${lexend.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
`,
}}
/>
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -68,7 +68,7 @@ export default function LandingPage() {
<div id="services" data-section="services">
<FeatureCardThree
title="Our Premium Services"
description="Comprehensive creative solutions designed for brands, events, and films seeking sophisticated digital experiences."
description="Comprehensive creative solutions designed for brands, events, and films seeking sophisticated digital experiences. Ready to elevate your vision? Let's discuss your project and bring your creative goals to life."
tag="Services"
tagIcon={Zap}
features={[
@@ -89,6 +89,10 @@ export default function LandingPage() {
animationType="slide-up"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
buttons={[
{ text: "Book a Consultation", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
</div>