Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Home Page Text & Formatting #50

Open
wants to merge 12 commits into
base: dev
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Description_Component from "@/components/home/Description_Component";
import Description_Component from "../components/homepage/Description_Component";

const Home = () => {
return (
Expand Down
22 changes: 22 additions & 0 deletions src/components/homepage/Description_Component.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import React from "react";

const Description_Component = () => {
return (
<div className="h-screen bg-gradient-to-b from-leap-light-green to-leap-mid-green">
AndresAtUCR marked this conversation as resolved.
Show resolved Hide resolved
<div className="py-10">
<h2 className="ml-[96px] mt-80 font-leap text-[60px] font-bold text-white">
AndresAtUCR marked this conversation as resolved.
Show resolved Hide resolved
Our Core Values
</h2>
<p className="w-3xl ml-[96px] mr-[500px] mt-10 font-leap text-[22px] text-white">
Loving our Emotions as Asian & Pacific !slanders, otherwise known as
LEAP!, is a community of friends who advocate for safe spaces and
mental health. We strive to make a safe space for everyone of every
background to chat, destress, make friends, and learn about mental
health in the AAPI community. Come join us to hangout!
</p>
</div>
</div>
);
};

export default Description_Component;
Loading