Skip to content

Commit

Permalink
add top margin
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosazghi committed Mar 18, 2024
1 parent f6a1e17 commit 18a60ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/events/eventPage.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import SectionTitle from '@/components/events/sectionTitle';
import { events } from '@/components/events/eventData';
import SectionTitle from '@/components/events/sectionTitle';
import Footer from '@/components/footer/footer';
import Header from '@/components/header/page';
import Image from 'next/image';
import ErrorPage from '../../app/(site)/feilside/page';
import Link from 'next/link';
import Header from '@/components/header/page';
import ErrorPage from '../../app/(site)/feilside/page';

type EventPageProps = {
eventId: string;
Expand All @@ -26,7 +26,7 @@ const EventPage: React.FC<EventPageProps> = ({ eventId }) => {
<div className='bg-[#132D4E] min-h-screen'>
<Header />
<div className='container mx-auto px-4 py-10'>
<div className='mb-10'>
<div className='mt-20 mb-10'>
<SectionTitle title={event.title} />
</div>
<div className='max-w-7xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden mb-20'>
Expand Down

0 comments on commit 18a60ee

Please sign in to comment.