Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d04e48e46 | |||
| b87fa4a845 | |||
| a6c1237897 | |||
| 26e0ef48a8 | |||
| 8d0a9a6f55 |
@@ -1,14 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Lexend } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const lexend = Lexend({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-lexend", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -16,21 +13,8 @@ export default function RootLayout({
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<body className={`${lexend.variable}`}>
|
<body className={inter.className}>{children}
|
||||||
{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')
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ export default function LandingPage() {
|
|||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardThree
|
<FeatureCardThree
|
||||||
title="Our Premium Services"
|
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"
|
tag="Services"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
features={[
|
features={[
|
||||||
@@ -89,6 +89,10 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
gridVariant="two-columns-alternating-heights"
|
gridVariant="two-columns-alternating-heights"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#contact" }
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user