Skip to content

Commit

Permalink
Add head to calendar
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Feb 8, 2024
1 parent 6864425 commit e5bdca1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/pages/resources/calendar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Header from '@/components/Header';
import Footer from '@/components/Footer';
import Head from 'next/head';
import { useEffect, useState } from 'react';
import Image from 'next/image';
import { ics } from 'calendar-link';
Expand Down Expand Up @@ -239,8 +240,13 @@ const Calendar = () => {
}

return (
<div className="bg-white">
<Header text="Calendar of Events" />
<>
<Head>
<title>Calendar - Nebula Labs</title>
<link rel="canonical" href="https://www.utdnebula.com/resources/calendar" key="canonical" />
<meta property="og:url" content="https://www.utdnebula.com/resources/calendar" />
</Head>
<Header text="Calendar" />
<div className="px-8 lg:px-16 xl:px-32 pb-12 flex justify-center gap-2 flex-wrap">
<a
className={buttonLinkClasses}
Expand All @@ -261,7 +267,7 @@ const Calendar = () => {
</div>
{result}
<Footer royalBg={false} />
</div>
</>
);
};

Expand Down

0 comments on commit e5bdca1

Please sign in to comment.