diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 690b4fe..c2f12a7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -30,7 +30,7 @@ const links = [ }, { title: 'Email', - href: 'utdfiji.president@gmail.com', + href: 'mailto:utdfiji.president@gmail.com', }, ]; @@ -47,13 +47,22 @@ export default function Contact() {

Instagram is the best place to stay up to date with our latest updates and events.

- + Instagram

You can also find us here:

{links.map((link) => ( - + {link.title} ))} diff --git a/src/app/parents/page.tsx b/src/app/parents/page.tsx new file mode 100644 index 0000000..b03d7a5 --- /dev/null +++ b/src/app/parents/page.tsx @@ -0,0 +1,93 @@ +import type { Metadata } from 'next'; +import Link from 'next/link'; +import React from 'react'; + +import PigDinner from '@/../public/headers/pig-dinner.jpg'; +import Page from '@/components/Page'; +import Section from '@/components/Section'; + +export const metadata: Metadata = { + title: 'Parents & Guardians', + description: 'Parents & Guardians Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', + openGraph: { + title: 'Parents & Guardians', + description: 'Parents & Guardians Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', + url: '/parents', + }, + alternates: { + canonical: '/parents', + }, +}; + +export default function Recruitment() { + return ( + +
+

+ Whether your son is already a brother or is considering becoming one, we welcome the + opportunity to inform you about our fraternity and answer any questions you might have. +

+

+ Phi Gamma Delta is a social fraternity, which means we are not exclusive to any one major + or career. Instead, we aim to unite our members in enduring friendships, stimulate the + pursuit of knowledge, and build courageous leaders who serve the world with the best that + is in them. +

+

+ Phi Gamma Delta is a registered student organization under the UT Dallas{' '} + + Fraternity and Sorority Life + {' '} + (FSL) office and is one of 9 members of the{' '} + + Interfraternity Council + {' '} + (IFC) at UT Dallas. FSL and IFC serve as the governing bodies for our fraternity as well + as the other IFC fraternities, providing representation, community building, and + accountability. +

+

+ Phi Gamma Delta is committed to the prevention of hazing. We follow a new model to Build + Courageous Leaders in which new brothers are initiated within 4 days of accepting an + invitation to join and are henceforth brothers in every aspect. Built to Lead programming + and a multilevel member development experience begin on the first day of affiliation and + extend throughout the undergraduate experience. The program helps brothers build and + strengthen the skills necessary to lead with courage. More information is available on our + national website. Please see{' '} + + Hazing Prevention & Elimination + {' '} + and{' '} + + Our New Model: Built to Lead + + . +

+

+ UT Dallas is not like what you may see on TV. We are a commuter school where a large + portion of students go home immediately after class. Finding a community for many means + joining Greek life, and for those select few, that means Phi Gamma Delta. +

+
+
+

+ Please reach out via{' '} + + Email + {' '} + or on{' '} + + Instagram + {' '} + with any questions or concerns. +

+
+
+ ); +} diff --git a/src/app/philanthropy/page.tsx b/src/app/philanthropy/page.tsx index a5cb017..da16da9 100644 --- a/src/app/philanthropy/page.tsx +++ b/src/app/philanthropy/page.tsx @@ -39,7 +39,7 @@ export default function Philanthropy() { day-long event where FIJI brings a car onto the UT Dallas campus and hundreds of passerby are allowed to smash, bash, and destroy the car with anything from a sledge hammer to a crowbar. Car Bash raises money in support of the{' '} - + American Red Cross {' '} who provide emergency assistance, disaster relief, and disaster preparedness education in @@ -65,7 +65,11 @@ export default function Philanthropy() {

Look out for the next Car Bash on our{' '} - + Instagram . diff --git a/src/app/recruitment/page.tsx b/src/app/recruitment/page.tsx index c28c022..8fb2057 100644 --- a/src/app/recruitment/page.tsx +++ b/src/app/recruitment/page.tsx @@ -51,7 +51,7 @@ export default function Recruitment() {

Our{' '} - + Rush Form {' '} is the best way for us to stay in contact with you at the starts of semesters. @@ -60,7 +60,11 @@ export default function Recruitment() {

For up to date information, please visit our{' '} - + Instagram.

diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 5ad2880..f256dab 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -15,6 +15,10 @@ const groups = [ title: 'Philanthropy', href: '/philanthropy', }, + { + title: 'Parents', + href: '/parents', + }, { title: 'Contact', href: '/contact', diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 8a4fbfa..19f6fe0 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -16,6 +16,10 @@ const links = [ title: 'Graduate Site', href: 'https://fiji-tau-delta-chapter.square.site/', }, + { + title: 'Parents', + href: '/parents', + }, { title: 'Contact', href: '/contact',