Files
website-v2/components/site-footer.tsx
Y6NDR bcbb008c33 v2 Beta (#18)
* Finished the first release for the website

* Removed dark bg

* Commented tailwind config file and style.css

* Removed theme provider component from next

* Changed some png to svg, fixed some alignments and added favicon

* chore:  Add `framer-motion` package

* fix: 💄 Add orange to tailwind, update fonts, hover state for nav items

* chore:  Add `gsap`package

* feat: 💫 Add `WhatWeDo` logo animation

* Fixed homepage whatwedo for mobile and modified projects file

* Fixed on homepage dynamic content box

* Fixed homepage logo size on first section

* Fixed the width size of the pse logo on homepage

* Added new color on tailwindfile and changed border color on mainnav

* feat: 📱 Make "What We Do" section responsive

* Change image to webp and ajust size of images

* fix: ✏️ Fix typo on home page

* revert: 💫 Remove animation from `WhatWeDo` section

* update home page promo link

* Change some icons to svg, change bg on project page and project lib page

* Add more social media svg, change svg in project page and project lib page

* Change links on homepage to p tag, resize grid cols on projects lib page

* Change NextImage NextLink names and change a tag to p tag

* fix: 💄 Fix alignment of home page sections

---------

Co-authored-by: samueloh99 <samueloh99@gmail.com>
Co-authored-by: Samuel Oh <28302358+samueloh99@users.noreply.github.com>
Co-authored-by: Chiali Tsai <info@chialitsai.com>
2023-06-29 15:05:09 -05:00

86 lines
2.4 KiB
TypeScript

import NextImage from "next/image"
import NextLink from "next/link"
import PSELogo from "@/public/logos/footer-logo.svg"
import { siteConfig } from "@/config/site"
import {
Discord,
Github,
Mirror,
Twitter,
} from "@/components/svgs/social-medias"
import { ArrowRightUp } from "./svgs/arrows"
export function SiteFooter() {
return (
<footer className="flex flex-col gap-5">
<div className="flex w-full flex-col gap-5 p-[32px]">
<NextImage src={PSELogo} alt="logo" width={94} height={41} />
<h1 className="text-sm">
Privacy + Scaling Explorations is a multidisciplinary team supported
by the Ethereum Foundation.
</h1>
</div>
<div className="flex w-full flex-col gap-5 px-[32px] text-base font-[500]">
<NextLink href={"/"} className="border-b-2 border-[#171C1B] py-5">
HOME
</NextLink>
<NextLink
href={"/projects"}
className="border-b-2 border-[#171C1B] py-5"
>
PROJECT LIBRARY
</NextLink>
<NextLink
href={siteConfig.links.jobs}
target="_blank"
rel="noreferrer"
className="flex items-center gap-5 py-5"
>
JOBS
<ArrowRightUp color="black" />
</NextLink>
</div>
<div className="flex w-full flex-col items-center justify-center gap-5 bg-[#171C1B] py-[40px] text-sm">
<div className="flex gap-5">
<NextLink
href={siteConfig.links.twitter}
target="_blank"
rel="noreferrer"
>
<Twitter color="white" />
</NextLink>
<NextLink
href={siteConfig.links.discord}
target="_blank"
rel="noreferrer"
>
<Discord color="white" />
</NextLink>
<NextLink
href={siteConfig.links.github}
target="_blank"
rel="noreferrer"
>
<Github color="white" />
</NextLink>
<NextLink
href={siteConfig.links.articles}
target="_blank"
rel="noreferrer"
>
<Mirror color="white" />
</NextLink>
</div>
<div className="flex gap-5 text-white">
<h1>Privacy Policy</h1>
<h1>Terms of use</h1>
</div>
<h1 className="text-gray-400">Last updated June 8, 2023</h1>
</div>
</footer>
)
}