From 0ddc00e1cd7e749d5f213af8e2ac48e0cc9b6034 Mon Sep 17 00:00:00 2001 From: Tyler Hill Date: Mon, 29 Sep 2025 18:52:04 -0500 Subject: [PATCH 1/4] Initial page with text --- src/app/parents/page.tsx | 93 +++++++++++++++++++++++++++++++++++++++ src/components/Footer.tsx | 4 ++ src/components/Navbar.tsx | 4 ++ 3 files changed, 101 insertions(+) create mode 100644 src/app/parents/page.tsx diff --git a/src/app/parents/page.tsx b/src/app/parents/page.tsx new file mode 100644 index 0000000..c419cc6 --- /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', + description: 'Parents Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', + openGraph: { + title: 'Parents', + description: 'Parents 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 + the other IFC fraternities, providing representation, community building, and + accountability. +

+

+ Phi Gamma Delta is committed to the elimination and 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 begins on the first day of + affiliation and extends 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/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', From 6e00bea28dc39930baaf99f449f963bd97af0dd8 Mon Sep 17 00:00:00 2001 From: Tyler Hill Date: Mon, 29 Sep 2025 18:52:10 -0500 Subject: [PATCH 2/4] Link fixes --- src/app/contact/page.tsx | 15 ++++++++++++--- src/app/philanthropy/page.tsx | 8 ++++++-- src/app/recruitment/page.tsx | 8 ++++++-- 3 files changed, 24 insertions(+), 7 deletions(-) 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/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.

From 4a0e298e9d808fb122852be58c0d72cdf98fb60f Mon Sep 17 00:00:00 2001 From: Tyler Hill Date: Thu, 9 Oct 2025 12:32:16 -0500 Subject: [PATCH 3/4] Grammar --- src/app/parents/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/parents/page.tsx b/src/app/parents/page.tsx index c419cc6..bb53cbf 100644 --- a/src/app/parents/page.tsx +++ b/src/app/parents/page.tsx @@ -49,17 +49,17 @@ export default function Recruitment() { Interfraternity Council {' '} (IFC) at UT Dallas. FSL and IFC serve as the governing bodies for our fraternity as well - the other IFC fraternities, providing representation, community building, and + as the other IFC fraternities, providing representation, community building, and accountability.

- Phi Gamma Delta is committed to the elimination and 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 begins on the first day of - affiliation and extends 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{' '} + 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 {' '} @@ -72,7 +72,7 @@ export default function Recruitment() {

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. + joining Greek life, and for those select few, that means Phi Gamma Delta.

From 51fd46b24d1abe74d4b7a549c0d9b3e55485d847 Mon Sep 17 00:00:00 2001 From: Tyler Hill Date: Thu, 9 Oct 2025 14:06:37 -0500 Subject: [PATCH 4/4] Parents & Guardians --- src/app/parents/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/parents/page.tsx b/src/app/parents/page.tsx index bb53cbf..b03d7a5 100644 --- a/src/app/parents/page.tsx +++ b/src/app/parents/page.tsx @@ -7,11 +7,11 @@ import Page from '@/components/Page'; import Section from '@/components/Section'; export const metadata: Metadata = { - title: 'Parents', - description: 'Parents Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', + title: 'Parents & Guardians', + description: 'Parents & Guardians Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', openGraph: { - title: 'Parents', - description: 'Parents Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', + title: 'Parents & Guardians', + description: 'Parents & Guardians Page for the UT Dallas chapter of Phi Gamma Delta (FIJI).', url: '/parents', }, alternates: { @@ -23,7 +23,7 @@ export default function Recruitment() { return (