Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 30bb88cc5e | |||
| 127dc9c142 | |||
| a5922588dc | |||
| 19feec0cc7 |
@@ -1,49 +1,41 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Outfit } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const outfit = Outfit({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-outfit", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "CreatorsMize - Creative Agency & Digital Growth", description: "CreatorsMize is a creative agency specializing in social media management, content creation, video production, and digital growth strategies. Elevate your brand with our passionate, results-driven team.", keywords: "creative agency, social media management, content creation, video production, digital marketing, brand building, influencer marketing, digital growth", robots: {
|
title: "CreatorsMize - Creative Digital Solutions", description: "CreatorsMize is a creative agency specializing in digital solutions, content creation, and brand building. Transforming visions into impactful digital experiences."
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "CreatorsMize - Creative Agency & Digital Growth", description: "Elevate your brand with strategic creativity and cutting-edge digital solutions.", type: "website", siteName: "CreatorsMize"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "CreatorsMize - Creative Agency & Digital Growth", description: "Strategic creativity meets execution. Transform your brand with CreatorsMize."},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<head>
|
||||||
<body
|
<script
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
dangerouslySetInnerHTML={{
|
||||||
>
|
__html: `
|
||||||
<Tag />
|
try {
|
||||||
{children}
|
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')
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</head>
|
||||||
|
<body className={`${outfit.variable} font-outfit`} suppressHydrationWarning>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1403,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
|||||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import {
|
import {
|
||||||
Award,
|
Award,
|
||||||
CheckCircle,
|
CheckCircle,
|
||||||
@@ -181,22 +181,21 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactText
|
||||||
tag="Get In Touch"
|
text="Ready to start your next project? Let's create something epic together and elevate your brand to new heights."
|
||||||
title="Ready to Collaborate?"
|
animationType="reveal-blur"
|
||||||
description="Let's create something epic together. Reach out to discuss your creative vision and how CreatorsMize can elevate your brand."
|
buttons={[
|
||||||
tagIcon={Mail}
|
{ text: "Get In Touch", href: "#" },
|
||||||
tagAnimation="slide-up"
|
{ text: "View Our Work", href: "#portfolio" },
|
||||||
|
]}
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
ariaLabel="Contact section - Get in touch with CreatorsMize"
|
||||||
buttonText="Start Conversation"
|
|
||||||
termsText="We respect your privacy. Unsubscribe at any time."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBase
|
||||||
logoText="CreatorsMize"
|
logoText="CreatorsMize"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
@@ -223,25 +222,10 @@ export default function LandingPage() {
|
|||||||
{ label: "Press", href: "#" },
|
{ label: "Press", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "Legal", items: [
|
|
||||||
{ label: "Privacy Policy", href: "#" },
|
|
||||||
{ label: "Terms of Service", href: "#" },
|
|
||||||
{ label: "Cookie Policy", href: "#" },
|
|
||||||
{ label: "Accessibility", href: "#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Connect", items: [
|
|
||||||
{ label: "Instagram", href: "https://instagram.com" },
|
|
||||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
|
||||||
{ label: "Twitter", href: "https://twitter.com" },
|
|
||||||
{
|
|
||||||
label: "Email", href: "mailto:hello@creatorsmize.com"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 CreatorsMize. All rights reserved. Crafted with creativity in Jaipur."
|
copyrightText="© 2025 CreatorsMize. All rights reserved. Crafted with creativity in Jaipur."
|
||||||
|
onPrivacyClick={() => console.log("Privacy policy clicked")}
|
||||||
|
ariaLabel="Site footer - CreatorsMize"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user