-
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.
- Loading branch information
1 parent
eb010db
commit 3777929
Showing
20 changed files
with
261 additions
and
159 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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
type CeSIUMLogoProps = { | ||
width?: number; | ||
height?: number; | ||
color?: string; | ||
}; | ||
|
||
export default function CeSIUMLogo(props: CeSIUMLogoProps) { | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 479.29 549.18" | ||
style={{ color: props.color }} | ||
{...props} | ||
> | ||
<defs> | ||
<style>{`.cls-1{fill: currentColor }`}</style> | ||
</defs> | ||
<path | ||
d="m171.29 39.06 164 94.59-95.05 56.7-82.59-47.53-68 39.06 149.88 86.59 233.41-134.35L239.76 0l-68.47 39.06z" | ||
className="cls-1" | ||
/> | ||
<path | ||
d="M157.41 47.06 7.76 134.24l68.01 39.41 81.64-47.06 82.83 47.06 67.52-39.41-150.35-87.18zM479.29 146.35 246.82 280.47v79.06l232.47-134.12v-79.06zM410.35 288.24v71.29l62.59-35.65-62.59-35.64zM479.29 336.94l-150.11 86.12v78.82l150.11-87.06v-77.88z" | ||
className="cls-1" | ||
/> | ||
<path | ||
d="M246.82 376v173.18l68.47-39.77v-94.59l82.36-47.76v-78.82L246.82 376zM164.24 336.23s1.65 96 0 94.59S0 336.23 0 336.23v78.35l232.94 134.59V375.76Z" | ||
className="cls-1" | ||
/> | ||
<path | ||
d="M68.23 280.94v-95.29L0 146.35V320l150.59 86.35.94-77.41-83.3-48z" | ||
className="cls-1" | ||
/> | ||
<path | ||
d="M82.12 193.65v79.29l150.82 86.59v-78.59L82.12 193.65z" | ||
className="cls-1" | ||
/> | ||
</svg> | ||
); | ||
} |
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 |
---|---|---|
|
@@ -34,30 +34,42 @@ const ListLink = ({ href, text }: ListLinkProps) => ( | |
|
||
const Footer = () => { | ||
return ( | ||
<footer className="mt-12 grid gap-4 px-4 pb-4 md:grid-cols-2 md:px-8 md:pb-8 lg:grid-cols-3 lg:px-20 lg:pb-24"> | ||
<footer className="grid gap-4 md:grid-cols-2 md:px-8 md:pb-8 lg:grid-cols-3"> | ||
<div className="flex flex-col justify-between gap-4 text-gray-500 max-md:items-center max-md:text-center"> | ||
<Image | ||
src="/cesium.svg" | ||
alt="CeSIUM logo" | ||
width={32} | ||
height={32} | ||
></Image> | ||
<p className="max-w-[40ch]"> | ||
<p className="max-w-[300px]"> | ||
CeSIUM - Centro de Estudantes de Engenharia Informática da | ||
Universidade do Minho | ||
</p> | ||
<ul className="flex flex-wrap gap-x-4"> | ||
<SocialLink href="" icon={<FaFacebookF />} /> | ||
<SocialLink href="" icon={<FaInstagram />} /> | ||
<SocialLink href="" icon={<FaTwitter />} /> | ||
<SocialLink href="" icon={<FaGithub />} /> | ||
<SocialLink href="" icon={<FaYoutube />} /> | ||
<SocialLink | ||
href="https://www.facebook.com/cesiuminho" | ||
icon={<FaFacebookF />} | ||
/> | ||
<SocialLink | ||
href="https://www.instagram.com/cesiuminho" | ||
icon={<FaInstagram />} | ||
/> | ||
<SocialLink | ||
href="https://www.twitter.com/cesiuminho" | ||
icon={<FaTwitter />} | ||
/> | ||
<SocialLink href="https://github.com/cesium/" icon={<FaGithub />} /> | ||
<SocialLink | ||
href="https://youtube.com/cesiumUM" | ||
icon={<FaYoutube />} | ||
/> | ||
</ul> | ||
</div> | ||
<div className="flex justify-center max-lg:pt-4 max-md:border-t-[1px] max-md:border-gray-300"> | ||
<div className="grid max-w-md grow grid-cols-3 gap-4"> | ||
<div> | ||
<span>Label</span> | ||
<span>Links</span> | ||
<ul className="mt-4"> | ||
<ListLink href="" text="Consectetur" /> | ||
<ListLink href="" text="Lorem Ipsum" /> | ||
|
@@ -85,9 +97,9 @@ const Footer = () => { | |
<div className="text-center text-gray-500 max-lg:flex max-lg:justify-center max-lg:border-t-[1px] max-lg:border-gray-300 max-lg:pt-4 max-md:pt-4 md:col-span-2 md:self-end lg:col-auto lg:text-right"> | ||
<div> | ||
<p>Braga, Portugal</p> | ||
<p>Telefone: +351 253 604 448</p> | ||
<p>+351 253 604 448</p> | ||
<p> | ||
Email: <a href="mailto:[email protected]">[email protected]</a> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
</div> | ||
</div> | ||
|
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,17 +1,16 @@ | ||
import Image from "next/image"; | ||
import logo from "@/public/cesium.svg"; | ||
import CeSIUMLogo from "./CeSIUMLogo"; | ||
|
||
export default function Hero() { | ||
return ( | ||
<div className="mt-32 flex items-center justify-center gap-32"> | ||
<div className="w-[530px] flex-col items-center justify-center"> | ||
<div className="flex items-center justify-center gap-32"> | ||
<div className="w-[480px] flex-col items-center justify-center"> | ||
<div className="mb-6 font-orbitron text-7xl font-bold">CeSIUM</div> | ||
<div className="font-inter text-xl font-normal text-slate-500"> | ||
Centro de Estudantes de Engenharia Informática da Universidade do | ||
Minho | ||
</div> | ||
</div> | ||
<Image src={logo} alt="" width={250} height={343} priority /> | ||
<CeSIUMLogo width={352} color="#ed7950" /> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.