Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 646bdbcb51 | |||
| b10bc9b1e1 | |||
| dbe23c6313 | |||
| 5365db4a44 | |||
| 1cebd78aab |
@@ -1,51 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
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"],
|
||||
});
|
||||
import type { Metadata } from 'next';
|
||||
import './globals.css';
|
||||
import './styles/variables.css';
|
||||
import './styles/base.css';
|
||||
|
||||
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 | 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: [
|
||||
{
|
||||
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"]
|
||||
}
|
||||
title: 'EcoFusion',
|
||||
description: 'Build sustainable futures with real impact',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
import { Award, Leaf, TrendingUp, Users, Zap } from "lucide-react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
@@ -42,29 +42,22 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
<HeroOverlay
|
||||
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."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Sustainability Leadership"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
rating={5}
|
||||
ratingText="Trusted by 50K+ Community Members"
|
||||
buttons={[
|
||||
{ text: "Explore Our Impact", href: "#metrics" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
{ text: "Explore Our Impact", href: "metrics" },
|
||||
{ text: "Learn More", href: "about" }
|
||||
]}
|
||||
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/bottom-view-group-trees_23-2148215224.jpg", imageAlt: "Green forest sustainability initiative"
|
||||
}
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
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}
|
||||
/>
|
||||
</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."
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Discover Our Solutions", href: "#features" },
|
||||
{ text: "Schedule Consultation", href: "#contact" }
|
||||
{ text: "Discover Our Solutions", href: "features" },
|
||||
{ text: "Schedule Consultation", href: "contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
showBorder={true}
|
||||
@@ -228,4 +221,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user