Skip to content

Commit

Permalink
✨ Update about section
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshHeng committed Apr 3, 2024
1 parent de0ff95 commit a759abb
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 19 deletions.
82 changes: 82 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"dependencies": {
"next": "14.1.4",
"react": "^18",
"react-dom": "^18"
"react-dom": "^18",
"react-icons": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20",
Expand Down
43 changes: 26 additions & 17 deletions src/app/about.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
import { FiExternalLink } from 'react-icons/fi';

export default function About() {
return (
<section className="-top-8 relative mb-4">
<h2>What is WSAF?</h2>
<p>
Warwick Student Arts Festival (WSAF) is a 3 day showcase and celebration
of all aspects of the arts here at Warwick!
</p>
<p>
Every day will feature a programme of events including theatre, dance,
music, film, literature, comedy and art held across the entirety of
campus.
</p>
<p>
Performances will run throughout the day, so there will be things to see
and do from the morning until the evening.
</p>
<p>
If you have a show, some art, a dance, a poem or anything in between
that you want to show, take part!
</p>
<div className="px-8 text-lg max-w-5xl mx-auto">
<p className="font-bold mb-2">
Warwick Student Arts Festival (WSAF) is a 3 day showcase and
celebration of all aspects of the arts here at Warwick!
</p>
<p>
Every day will feature a morning-to-evening programme of events
including theatre, dance, music, film, literature, comedy and art held
across the entirety of campus. If you have a show, some art, a dance,
a poem or anything in-between that you want to show, we'd love to see
you there!
</p>
<a
href="https://forms.office.com/pages/responsepage.aspx?id=vc-6Ce9HZUSSZTVG8ur2vFkUeDcXxJtJj843aI4gzYJUNEJZSVlJN1k5UlBKUE01VzA2VjhNMlIyMiQlQCN0PWcu"
target="_blank"
className="inline-block bg-secondary m-4 px-4 py-1 rounded-sm drop-shadow-sm hover:scale-105"
>
<span className="text-2xl uppercase font-bold">
Registration Form Now Open{' '}
<FiExternalLink className="inline-block mb-2" />
</span>
<span className="block text-sm">Closes Friday 26th April</span>
</a>
</div>
</section>
);
}

0 comments on commit a759abb

Please sign in to comment.