Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 20:06:55 +00:00
2 changed files with 41 additions and 62 deletions

View File

@@ -1,49 +1,45 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { Outfit } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
import { Tag } from "@/components/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const outfit = Outfit({
variable: "--font-outfit", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
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: {
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."},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<head>
<script
dangerouslySetInnerHTML={{
__html: `
try {
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>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1407,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -7,8 +7,8 @@ import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import {
Award,
CheckCircle,
@@ -181,22 +181,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get In Touch"
title="Ready to Collaborate?"
description="Let's create something epic together. Reach out to discuss your creative vision and how CreatorsMize can elevate your brand."
tagIcon={Mail}
tagAnimation="slide-up"
<ContactText
text="Ready to start your next project? Let's create something epic together and elevate your brand to new heights."
animationType="reveal-blur"
buttons={[
{ text: "Get In Touch", href: "#" },
{ text: "View Our Work", href: "#portfolio" },
]}
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Start Conversation"
termsText="We respect your privacy. Unsubscribe at any time."
ariaLabel="Contact section - Get in touch with CreatorsMize"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
<FooterBase
logoText="CreatorsMize"
columns={[
{
@@ -223,25 +222,10 @@ export default function LandingPage() {
{ 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."
onPrivacyClick={() => console.log("Privacy policy clicked")}
ariaLabel="Site footer - CreatorsMize"
/>
</div>
</ThemeProvider>