Skip to content

Commit

Permalink
Standardize margins and padding for consistent layout across components
Browse files Browse the repository at this point in the history
- Fixed inconsistent margins and padding across various components
- Improved overall design cohesion and user experience
- Maintained responsiveness for different screen sizes
- Contributed as part of GSSOC 2024
  • Loading branch information
tejasbenibagde committed Oct 1, 2024
1 parent f08795a commit db8cadc
Show file tree
Hide file tree
Showing 9 changed files with 393 additions and 417 deletions.
Binary file added public/coffee-shop.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 31 additions & 26 deletions src/Components/Pages/About.jsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,37 @@
import bgpic from "../../assets/img/abt1.jpg"
import bgpic from "../../assets/img/abt1.jpg";

export default function About() {
return (
<div id="about" className="w-full mt-28 h-screen relative">
<div className="absolute inset-0 bg-cover bg-center opacity-30" style={{ backgroundImage: `url(${bgpic})` }}></div>
<div className="relative z-10 flex items-center justify-center h-full ms-10">
<h1 className="text-9xl font-bold text-start w-full">ABOUT US</h1>
<div className="flex w-full justify-center align-middle mt-10 px-36 relative z-10">
<p className="text-xl text-gray-800 text-pretty w-full">
How it works..
Our name says it all!
Founder, Jonathan Li, shares a passion for board games, boba, and
delicious food, so he combined them all to become Sip & Play, Park Slope’s
first board game cafe. It is a straightforward concept, come in with your
friends and family to play any board game from our library of <span className="text-amber-600">300+ games!</span>
We hope when you visit, you also enjoy our coffee, espresso, boba,
sandwiches, and snacks!
<br/>
<br/>
Hours and Location
New opening hours:<br/>
Sunday: 10am-11pm <br/>
Mon-Thurs: 11am-11pm <br/>
Fri: 11am-midnight <br/>
Sat: 10am-midnight <br/>
Our kitchen closes 2.5-3 hours before we close!
</p>
</div>
<div id="about" className="w-full h-screen relative py-8">
<div
className="absolute inset-0 bg-cover bg-center opacity-30"
style={{ backgroundImage: `url(${bgpic})` }}
></div>
<div className="relative z-10 flex items-center justify-between h-full w-full px-16 gap-32">
<h1 className="text-9xl font-bold text-start inline-block whitespace-nowrap">
ABOUT US
</h1>
<div className="flex w-full justify-center align-middle mt-10 relative z-10">
<p className="text-xl text-gray-800 text-pretty w-full ">
How it works.. Our name says it all! Founder, Jonathan Li, shares a
passion for board games, boba, and delicious food, so he combined
them all to become Sip & Play, Park Slope’s first board game cafe.
It is a straightforward concept, come in with your friends and
family to play any board game from our library of{" "}
<span className="">300+ games!</span>
We hope when you visit, you also enjoy our coffee, espresso, boba,
sandwiches, and snacks!
<br />
<br />
Hours and Location New opening hours:
<br />
Sunday: 10am-11pm <br />
Mon-Thurs: 11am-11pm <br />
Fri: 11am-midnight <br />
Sat: 10am-midnight <br />
Our kitchen closes 2.5-3 hours before we close!
</p>
</div>
</div>
</div>
);
Expand Down
Loading

0 comments on commit db8cadc

Please sign in to comment.