import React from "react"; import { Tilt } from "react-tilt"; import { motion } from "framer-motion"; import { fadeIn, textVariant } from "src/utils/motion"; import { services } from "src/constans"; import { styles } from "src/style"; import { SectionWrapper } from "src/hoc"; import Image from "next/image"; const ServiceCard = ({ index, title, icon }) => (
{/* web-development */}

{title}

); const About = () => { return ( <>

Introduction.

At 'Briz', our ethos is simple: empower coffee shop owners to manage better, control operations smoothly, and serve each cup with a smile. Our platform is designed to handle the heavy lifting of day-to-day tasks, from inventory management to staff scheduling, so you can focus on what matters most - your patrons and your passion for coffee.
{services.map((service, index) => ( ))}
); }; export default SectionWrapper(About, "about");