18 lines
363 B
TypeScript
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;
|