2026-08-06 10:03:08 +05:30

18 lines
363 B
TypeScript

import ListOfUpcomingEvents from '@/components/gallery/ListOfUpcomingEvents';
import { Metadata } from 'next';
import React from 'react';
export const metadata: Metadata = {
title: 'Upcoming Events',
};
const UpcomingEventsPage = () => {
return (
<>
<ListOfUpcomingEvents />
</>
);
};
export default UpcomingEventsPage;