Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9bd2e95816 | |||
| 646bdbcb51 | |||
| b10bc9b1e1 | |||
| dbe23c6313 | |||
| 5365db4a44 | |||
| 1cebd78aab |
@@ -1,51 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } from "next/font/google";
|
import './globals.css';
|
||||||
import { Inter } from "next/font/google";
|
import './styles/variables.css';
|
||||||
import { Nunito } from "next/font/google";
|
import './styles/base.css';
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/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 nunito = Nunito({
|
|
||||||
variable: "--font-nunito", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "EcoFusion | Real Sustainability Impact & Community Action", description: "Join thousands building sustainable futures with EcoFusion. Transparent environmental solutions, measurable impact metrics, and engaged community for eco-conscious brands.", keywords: "sustainability, environmental impact, carbon tracking, eco-conscious, community engagement, sustainable innovation", openGraph: {
|
title: 'EcoFusion',
|
||||||
title: "EcoFusion | Real Impact Starts With Real Action", description: "Build sustainable futures with transparent accountability and measurable environmental change. Join 50K+ community members today.", siteName: "EcoFusion", type: "website", images: [
|
description: 'Build sustainable futures with real impact',
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/group-wind-turbine-power-generator_554837-348.jpg", alt: "Wind turbine in sustainable landscape"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "EcoFusion | Real Sustainability Impact", description: "Join thousands making measurable environmental change with transparent accountability.", images: ["http://img.b2bpic.net/free-photo/group-wind-turbine-power-generator_554837-348.jpg"]
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
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">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1385,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
import { Award, Leaf, TrendingUp, Users, Zap } from "lucide-react";
|
import { Award, Leaf, TrendingUp, Users, Zap } from "lucide-react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||||
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||||
@@ -42,29 +42,22 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDualMedia
|
<HeroOverlay
|
||||||
title="Real Impact Starts With Real Action"
|
title="Real Impact Starts With Real Action"
|
||||||
description="We're building a sustainable future by combining innovative solutions with transparent accountability. Join thousands making measurable environmental change today."
|
description="We're building a sustainable future by combining innovative solutions with transparent accountability. Join thousands making measurable environmental change today."
|
||||||
background={{ variant: "plain" }}
|
|
||||||
tag="Sustainability Leadership"
|
tag="Sustainability Leadership"
|
||||||
tagIcon={Leaf}
|
tagIcon={Leaf}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
rating={5}
|
|
||||||
ratingText="Trusted by 50K+ Community Members"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Our Impact", href: "#metrics" },
|
{ text: "Explore Our Impact", href: "metrics" },
|
||||||
{ text: "Learn More", href: "#about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
mediaItems={[
|
imageSrc="http://img.b2bpic.net/free-photo/group-wind-turbine-power-generator_554837-348.jpg"
|
||||||
{
|
imageAlt="Wind turbine in sustainable landscape"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/group-wind-turbine-power-generator_554837-348.jpg", imageAlt: "Wind turbine in sustainable landscape"
|
textPosition="bottom-left"
|
||||||
},
|
showBlur={true}
|
||||||
{
|
showDimOverlay={false}
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-group-trees_23-2148215224.jpg", imageAlt: "Green forest sustainability initiative"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -75,8 +68,8 @@ export default function LandingPage() {
|
|||||||
"EcoFusion empowers organizations to integrate environmental responsibility into their core operations. We believe transparency and measurable impact are the foundation of authentic sustainability.", "Our approach combines cutting-edge solutions with accountability mechanisms that demonstrate real environmental progress to your stakeholders and community members committed to eco-conscious practices."
|
"EcoFusion empowers organizations to integrate environmental responsibility into their core operations. We believe transparency and measurable impact are the foundation of authentic sustainability.", "Our approach combines cutting-edge solutions with accountability mechanisms that demonstrate real environmental progress to your stakeholders and community members committed to eco-conscious practices."
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Discover Our Solutions", href: "#features" },
|
{ text: "Discover Our Solutions", href: "features" },
|
||||||
{ text: "Schedule Consultation", href: "#contact" }
|
{ text: "Schedule Consultation", href: "contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
showBorder={true}
|
showBorder={true}
|
||||||
@@ -228,4 +221,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user