Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 072be39cd3 | |||
| be37d2f9c0 | |||
| 93f7b5b7a9 | |||
| 36be4886bc |
@@ -1,7 +1,15 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
|
import "./styles/variables.css";
|
||||||
|
import "./styles/base.css";
|
||||||
|
import "./globals.css";
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Flóraison | Plantable Pencils", description: "Transform your writing into environmental impact with Flóraison plantable pencils made from 100% recycled newspaper."};
|
title: "Flóraison - Sustainable Writing, Growing Impact", description: "Transform your writing into environmental action with Flóraison plantable pencils."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -10,7 +18,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body>{children}
|
<body className={inter.variable}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -10,7 +10,8 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
|||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import { Sprout, Leaf, Package, Trash2, AlertTriangle, Droplet, Recycle, PenTool, BookOpen, Shovel, Sun, Flower2, Globe, Mail, Users, Lock, Bell, CheckCircle, Shield, Zap } from "lucide-react";
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
|
import { Sprout, Leaf, Package, Trash2, AlertTriangle, Droplet, Recycle, PenTool, BookOpen, Shovel, Sun, Flower2, Globe, Mail, Award, Users, Lock, Bell, CheckCircle, Shield, Zap } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -265,6 +266,23 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="social-proof" data-section="social-proof">
|
||||||
|
<SocialProofOne
|
||||||
|
title="Trusted by Environmental Leaders"
|
||||||
|
description="Flóraison is endorsed by sustainability organizations and environmental advocates worldwide."
|
||||||
|
tag="Partnerships"
|
||||||
|
tagIcon={Award}
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
names={[
|
||||||
|
"Global Green Initiative", "EcoEducators Alliance", "Sustainable Schools Network", "Plant Restoration Foundation", "Carbon Neutral Collective", "Earth Stewards Organization", "Future Forests Project", "Green Innovation Hub"
|
||||||
|
]}
|
||||||
|
speed={40}
|
||||||
|
showCard={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFive
|
<TestimonialCardFive
|
||||||
title="Stories from Our Community"
|
title="Stories from Our Community"
|
||||||
|
|||||||
Reference in New Issue
Block a user