diff --git a/src/Components/Pages/About.jsx b/src/Components/Pages/About.jsx index 93508dd4..244d9bf5 100644 --- a/src/Components/Pages/About.jsx +++ b/src/Components/Pages/About.jsx @@ -2,31 +2,36 @@ import bgpic from "../../assets/img/abt1.jpg" export default function About() { return ( -
-
-
-

ABOUT US

-
-

- 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 300+ games! - We hope when you visit, you also enjoy our coffee, espresso, boba, - sandwiches, and snacks! -
-
- Hours and Location - New opening hours:
- Sunday: 10am-11pm
- Mon-Thurs: 11am-11pm
- Fri: 11am-midnight
- Sat: 10am-midnight
- Our kitchen closes 2.5-3 hours before we close! -

-
+
+
+
{/* Black overlay with 40% opacity */} +
+

ABOUT US

+
+

{/* Change text color for better contrast */} + 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 300+ games! + We hope when you visit, you also enjoy our coffee, espresso, boba, + sandwiches, and snacks! +
+
+ Hours and Location + New opening hours:
+ Sunday: 10am-11pm
+ Mon-Thurs: 11am-11pm
+ Fri: 11am-midnight
+ Sat: 10am-midnight
+ Our kitchen closes 2.5-3 hours before we close! +

+
+
); diff --git a/src/Components/Shared/Navbar.jsx b/src/Components/Shared/Navbar.jsx index 5f60e88f..f31bad03 100644 --- a/src/Components/Shared/Navbar.jsx +++ b/src/Components/Shared/Navbar.jsx @@ -115,7 +115,7 @@ const Navbar = () => { diff --git a/src/Components/ui/Landing.jsx b/src/Components/ui/Landing.jsx index e9ee105b..309c8c7e 100644 --- a/src/Components/ui/Landing.jsx +++ b/src/Components/ui/Landing.jsx @@ -5,25 +5,29 @@ import coffecup from "../../assets/landing/coffecup.png"; export default function Landing() { return (
-
-
+
+
{/* Text Content */} -
-

+
+

A unique café experience awaits you

-
+
+
+
-
+
+
+

-
+
{/*

Our name says it all! @@ -45,11 +49,12 @@ export default function Landing() {

*/} -
+ +
-

+

PLAYCAFE

diff --git a/src/Components/ui/ReviewCarousel.jsx b/src/Components/ui/ReviewCarousel.jsx index 442043c7..12d1b238 100644 --- a/src/Components/ui/ReviewCarousel.jsx +++ b/src/Components/ui/ReviewCarousel.jsx @@ -72,7 +72,7 @@ const ReviewCarousel = () => { return (
-
+

Customer Feedback

diff --git a/tailwind.config.js b/tailwind.config.js index c60af255..2e630091 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,6 +3,9 @@ export default { content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'], theme: { extend: { + height: { + 'screen-dvh': '100dvh', + }, fontFamily: { 'poppins': ['Poppins', 'sans-serif'], 'roboto': ['"Roboto Serif"', 'sans-serif'], diff --git a/vite.config.js b/vite.config.js index 5a33944a..721bd06e 100644 --- a/vite.config.js +++ b/vite.config.js @@ -3,5 +3,9 @@ import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ + server: { + host: '0.0.0.0', // allows access from all IP addresses + port: 5173, + }, plugins: [react()], })