H3 Heading

I’m a text box. Use the Editing menu to format the font, size, color and more of the entire text box. If you want to format individual words and letters, double click the text box, select the text and use the inline text editor.

H3 Heading

I’m a text box. Use the Editing menu to format the font, size, color and more of the entire text box. If you want to format individual words and letters, double click the text box, select the text and use the inline text editor.

import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Leaf, Recycle, Globe, Users } from "lucide-react"

const practices = [
{
icon: Leaf,
title: "Eco-Friendly Design",
description:
"We prioritize sustainable design practices, using eco-friendly materials and processes wherever possible.",
},
{
icon: Recycle,
title: "Digital-First Approach",
description: "Reducing paper waste through digital deliverables and cloud-based collaboration tools.",
},
{
icon: Globe,
title: "Carbon Neutral Operations",
description:
"Our studio operations are carbon neutral, and we offset our environmental impact through verified programs.",
},
{
icon: Users,
title: "Community Impact",
description:
"We donate 2% of profits to environmental causes and offer pro-bono services to sustainable businesses.",
},
]

export function SustainabilitySection() {
return (

Sustainable Branding for a Better Future

We believe great brands should not only look good but also do good. Our commitment to sustainability runs through every aspect of our work.

{practices.map((practice, index) => (
{practice.title}

{practice.description}

))}

Join Us in Making a Difference

When you choose Aniko Branding, you're not just investing in your brand – you're contributing to a more sustainable future for our planet.

50+
Trees Planted
100%
Renewable Energy
2%
Profits Donated

)
}