Skip to content

Commit

Permalink
Merge pull request #25 from acm-ucr/jsimj001/home-page-secondary-text
Browse files Browse the repository at this point in the history
Jsimj001/home page secondary text
  • Loading branch information
stanleylew5 authored Jan 31, 2025
2 parents 189bce6 + bed0825 commit d9f27be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import BlurbHome from "@/components/home/BlurbHome";
import MainText from "@/components/home/mainText";
import HomePage from "@/components/home/homepage";

const Home = () => {
return (
<div>
<MainText />
<HomePage />
<BlurbHome />
</div>
);
Expand Down
9 changes: 9 additions & 0 deletions src/components/home/homepage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const HomePage = () => {
return (
<div className="mx-auto flex w-screen items-center justify-center text-center text-[4vw] text-black">
CARDIOVASCULAR DISEASE STUDENT ASSOCIATION
</div>
);
};

export default HomePage;

0 comments on commit d9f27be

Please sign in to comment.