File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22import React from "react" ;
33import { BackgroundGradient } from "@/components/ui/background-gradient" ;
44
5- export function Event ( ) {
5+ const Event = ( ) => {
66 return (
77 < section className = "w-full px-4 md:px-8 lg:px-16 xl:px-20 py-8 text-center" >
88 < h2 className = "text-3xl md:text-4xl font-bold mb-6 text-foreground dark:text-white" >
@@ -30,4 +30,6 @@ export function Event() {
3030 </ div >
3131 </ section >
3232 ) ;
33- }
33+ } ;
34+
35+ export default Event ;
Original file line number Diff line number Diff line change 1- import { Event } from "./Event/page" ;
1+ import Event from "./Event/page" ;
22
3- export default function UpcomingEvent ( ) {
3+ const UpcomingEvent = ( ) => {
44 return (
55 < div >
66 < Event />
77 </ div >
88 ) ;
99}
10+
11+ export default UpcomingEvent ;
You can’t perform that action at this time.
0 commit comments