Skip to content

Commit

Permalink
Merge pull request #7 from chyroshan066/minor
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
delta-ioepc authored Jan 14, 2025
2 parents 1ea58fb + 6406188 commit f13da9d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/Events/OurEvents.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import React, { useState } from 'react';
import EventCard from './EventCard';
import { Poppins, Montserrat } from 'next/font/google';
import { AnimatePresence, motion } from 'framer-motion';
import { events } from '../../../data/data';
import React, { useState } from "react";
import EventCard from "./EventCard";
import { Poppins, Montserrat } from "next/font/google";
import { AnimatePresence, motion } from "framer-motion";
import { events } from "../../../data/data";

const poppins = Poppins({
weight: ['400', '200', '100', '300', '500', '600', '700', '800', '900'],
subsets: ['latin'],
weight: ["400", "200", "100", "300", "500", "600", "700", "800", "900"],
subsets: ["latin"],
});
const montserrat = Montserrat({
weight: ['400', '200', '100', '300', '500', '600', '700', '800', '900'],
subsets: ['latin'],
weight: ["400", "200", "100", "300", "500", "600", "700", "800", "900"],
subsets: ["latin"],
});

const OurEvents = () => {
Expand All @@ -31,7 +31,7 @@ const OurEvents = () => {
<h3
className={`mt-[4.5rem] font-extrabold text-black border-b-2 mb-8 mx-auto text-[40px] border-[#1f1b4e] ${poppins.className} `}
>
Past <span className="text-[#1f1b4e]">Events</span>
Upcoming <span className="text-[#1f1b4e]">Events</span>
</h3>
</div>
<div
Expand Down

0 comments on commit f13da9d

Please sign in to comment.