import React from "react"; import Tilt from "react-tilt"; import { motion } from "framer-motion"; import { styles } from "../styles"; import { menu } from "../constants"; import { SectionWrapper } from "../hoc"; import { fadeIn, textVariant } from "../utils/motion"; import { StarsCanvas } from "./canvas"; const ServiceCard = ({ index, title, icon, url }) => (
web-development

{title}

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

SOS CAMP 12th

Welcome to the 12th SOS camp, a preparation camp for SKE21 students. We hope that students will definitely gain knowledge and enjoyment.
{menu.map((service, index) => ( ))}
); }; export default SectionWrapper(Menu, "about");