-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from WarwickStudentArtsFestival/main
Production merge
- Loading branch information
Showing
6 changed files
with
78 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,32 @@ | ||
export default function Faq() { | ||
return ( | ||
<section className="mb-12"> | ||
<section className="mb-32"> | ||
<h2>FAQ</h2> | ||
|
||
<div className="mx-8 leading-tight"> | ||
<p className="mt-2 font-bold text-lg leading-tight mb-1"> | ||
Where can I find more information? | ||
</p> | ||
<p> | ||
Please contact us by email at{' '} | ||
<a | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
className="text-accent" | ||
> | ||
[email protected] | ||
</a>{' '} | ||
or on Instagram at{' '} | ||
<a | ||
href="https://www.instagram.com/wsaf24/" | ||
target="_blank" | ||
className="text-accent" | ||
> | ||
@wsaf24 | ||
</a> | ||
. | ||
</p> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
import Image from 'next/image'; | ||
import warwickTechCrewLogo from '@/assets/organisations/warwick-tech-crew.png'; | ||
|
||
export default function Footer() { | ||
return <footer className="bg-secondary mt-auto">Footer</footer>; | ||
return ( | ||
<footer className="bg-secondary mt-auto px-4 pt-6 pb-8 text-sm"> | ||
<div className="m-2"> | ||
<h3 className="font-bold">Delivery Partners</h3> | ||
<p className="font-light"> | ||
WSAF would not be possible without the generous support of our | ||
delivery partners: | ||
</p> | ||
<div className="flex justify-center gap-4 mt-1"> | ||
<Image | ||
src={warwickTechCrewLogo} | ||
alt="Warwick Tech Crew logo" | ||
className="h-16 w-auto" | ||
/> | ||
</div> | ||
</div> | ||
<p className="font-light mt-8"> | ||
Copyright © Warwick Student Arts Festival 2024 | ||
</p> | ||
</footer> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,10 @@ | ||
import IdCard, { IdCardProps } from '@/app/components/id-card'; | ||
import WarwickTechCrewLogo from '@/assets/organisations/warwick-tech-crew.png'; | ||
import WarwickSuLogo from '@/assets/organisations/warwick-su.png'; | ||
import AdamPhoto from '@/assets/people/adam.jpg'; | ||
import AlexPhoto from '@/assets/people/alex.jpg'; | ||
import MaximusPhoto from '@/assets/people/maximus.jpg'; | ||
import JoshPhoto from '@/assets/people/josh.jpg'; | ||
import ElliePhoto from '@/assets/people/ellie.jpg'; | ||
|
||
const organisations: IdCardProps[] = [ | ||
{ | ||
name: 'Warwick Tech Crew', | ||
image: WarwickTechCrewLogo, | ||
}, | ||
{ | ||
name: 'Warwick Presents', | ||
}, | ||
{ | ||
name: 'Warwick SU', | ||
image: WarwickSuLogo, | ||
}, | ||
]; | ||
|
||
const people: IdCardProps[] = [ | ||
{ | ||
name: 'Adam', | ||
|
@@ -31,7 +15,7 @@ const people: IdCardProps[] = [ | |
{ | ||
name: 'Alexander', | ||
role: 'Coordinator', | ||
description: '', | ||
description: '2nd Year Chemistry (PhD)', | ||
image: AlexPhoto, | ||
}, | ||
{ | ||
|
@@ -61,21 +45,20 @@ const people: IdCardProps[] = [ | |
|
||
export default function KeyDates() { | ||
return ( | ||
<section className="mb-12"> | ||
<section className="mb-20"> | ||
<h2>Who's Involved?</h2> | ||
<p>Some random text goes here</p> | ||
|
||
<div className="flex justify-center flex-wrap mb-8"> | ||
{organisations.map((organisation) => ( | ||
<IdCard | ||
key={organisation.name} | ||
name={organisation.name} | ||
description={organisation.description} | ||
image={organisation.image} | ||
organisation={true} | ||
/> | ||
))} | ||
</div> | ||
<p className="mt-2 mb-1 mx-4"> | ||
This year's WSAF is being organised by the following volunteers. If | ||
you think you could add something to the team, contact us at{' '} | ||
<a | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
className="text-accent" | ||
> | ||
[email protected] | ||
</a> | ||
. | ||
</p> | ||
|
||
<div className="flex justify-center flex-wrap mb-8"> | ||
{people.map((person) => ( | ||
|