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

Responsify Landing Component #112

Merged
merged 1 commit into from
Oct 28, 2024
Merged
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
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions src/components/home/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@ import banner from "@/public/home/landing.webp";

const Landing = () => {
return (
<div className="relative flex flex-row items-center justify-center text-8xl">
<div className="relative flex flex-row items-center justify-center text-3xl md:text-5xl lg:text-7xl xl:text-8xl 2xl:text-9xl">
<div className="absolute inset-0 flex flex-col items-center font-archivo-black">
<p className="relative right-[33%] top-[12.5%]">UCR</p>
<p className="relative top-[15.5%]">HIGHLANDER</p>
<p className="relative left-[27%] top-[20%]">GLOVES</p>
<p className="xl:top[20%] relative right-[35%] top-[8%] md:top-[15%] lg:top-[17%]">
UCR
</p>
<p className="xl:top[20%] relative right-[8%] top-[8%] md:right-[6%] md:top-[15%] lg:top-[17%]">
HIGHLANDER
</p>
<p className="xl:top[20%] relative left-[26%] top-[8%] md:top-[15%] lg:top-[17%]">
GLOVES
</p>
</div>
<Image className="w-screen" src={banner} alt="Landing" />
</div>
Expand Down
Loading