Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="en" className="overflow-x-hidden">
<GoogleAnalytics gaId="G-T54MKE337Q" />
<body
className={"antialiased " + inter.className}
className={"overflow-x-hidden antialiased " + inter.className}
suppressHydrationWarning
>
{/* <Navbar /> */}
Expand Down
10 changes: 5 additions & 5 deletions components/AboutUs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ export function AboutUs() {
</h1>
</motion.div>
<motion.div
className="mt-16 flex flex-row items-center justify-between"
className="mt-16 flex flex-col items-center justify-between gap-y-4 md:flex-row"
initial={{ opacity: 0, y: 16 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.3 }}
transition={{ duration: 0.55, ease: "easeOut" }}
>
<div className="text-p flex w-lg flex-col items-center justify-center gap-y-4">
<div className="text-p flex flex-col items-center justify-center gap-y-4 md:w-lg">
<div className="rounded-full border-2 p-3">
<HiOutlineRocketLaunch size="32px" />
</div>
<p className="text-center text-3xl">Our Mission</p>
</div>
<div className="bg-gradient-s flex w-lg flex-row items-center justify-center rounded-2xl p-8">
<div className="bg-gradient-s flex flex-row items-center justify-center rounded-2xl p-8 md:w-lg">
<p className="text-p text-center text-xl">
Our mission is to inspire students to innovate and build using
technology while creating a sense of community.
Expand Down Expand Up @@ -74,7 +74,7 @@ export function AboutUs() {
</p>
</motion.div>
<motion.div
className="mt-20 mr-auto max-w-3/5 text-left"
className="mt-20 mr-auto max-w-5/6 text-left md:max-w-3/5"
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.3 }}
Expand Down Expand Up @@ -119,7 +119,7 @@ export function AboutUs() {
</div>
</motion.div>
<motion.div
className="mt-20 ml-auto max-w-3/5 text-right"
className="mt-20 ml-auto max-w-5/6 text-right md:max-w-3/5"
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.3 }}
Expand Down
10 changes: 6 additions & 4 deletions components/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ export function Hero() {
<div className="flex h-[110vh] w-full flex-col bg-[url(/hero_image.png)] bg-cover bg-top bg-no-repeat">
<div className="flex h-[100vh] grow flex-col items-center justify-center">
<div className="flex flex-1 flex-col items-center justify-end">
<div className="bg-hero-bg rounded-2xl p-8 text-center text-white">
<h1 className={anta.className + " mb-4 text-8xl"}>DCHacks</h1>
<p className="text-xl">
<div className="bg-hero-bg mx-4 rounded-2xl p-8 text-center text-white lg:mx-0">
<h1 className={anta.className + " mb-4 text-6xl sm:text-8xl"}>
DCHacks
</h1>
<p className="text-md md:text-xl">
Join 100 other high schoolers for a weekend of building,
innovation, and collaboration! Coming to DC this October.
</p>
Expand All @@ -28,7 +30,7 @@ export function Hero() {
<div className="flex flex-1 flex-col items-center justify-end">
<div className="flex flex-col items-center">
<motion.div
className="mb-16 flex flex-row gap-12"
className="mb-16 flex flex-col items-center gap-6 md:flex-row md:gap-12"
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.3 }}
Expand Down
2 changes: 1 addition & 1 deletion components/JoinTeam/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const anta = Anta({
export function JoinTeam() {
return (
<div className="mx-auto max-w-5xl p-8 pt-16" id="join">
<div className="bg-gradient-s text-p rounded-2xl px-20 py-12">
<div className="bg-gradient-s text-p rounded-2xl px-12 py-12 md:px-20 md:py-12">
<motion.div
className="flex flex-row justify-center"
initial={{ opacity: 0, y: 12 }}
Expand Down
2 changes: 1 addition & 1 deletion components/Sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export function Sponsors() {
</motion.p>
</div>
<motion.div
className="mt-8 flex flex-row items-center justify-center gap-x-12"
className="mt-8 flex flex-col items-center justify-center gap-y-6 md:flex-row md:gap-x-12 md:gap-y-0"
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.3 }}
Expand Down