|
1 | | -// src/Pages/About.jsx |
2 | | -import React from "react"; |
3 | 1 | import { Link } from "react-router-dom"; |
4 | | -import AboutBg from "../assets/AboutBg.png"; // <-- put your about/background image here |
| 2 | +import AboutBg from "../assets/AboutBg.png"; |
5 | 3 |
|
6 | 4 | export default function About() { |
7 | 5 | return ( |
@@ -29,43 +27,50 @@ export default function About() { |
29 | 27 | </h1> |
30 | 28 |
|
31 | 29 | <p className="mt-10 text-slate-700"> |
32 | | - blendRUSH is a small, quality-obsessed juice bar focused on fresh smoothies, |
33 | | - cold-pressed juices, and nourishing bowls. We keep it simple: real fruit, |
34 | | - real flavor, blended to order—fast. |
| 30 | + blendRUSH is a small, quality-obsessed juice bar focused on fresh |
| 31 | + smoothies, cold-pressed juices, and nourishing bowls. We keep it |
| 32 | + simple: real fruit, real flavor, blended to order—fast. |
35 | 33 | </p> |
36 | 34 |
|
37 | 35 | <p className="mt-3 text-slate-700"> |
38 | | - Our menu is built around seasonal produce, balanced recipes, and feel-good |
39 | | - nutrition. Whether you’re post-workout, mid-study, or on the go, we’ve got a |
40 | | - cup that matches your vibe. |
| 36 | + Our menu is built around seasonal produce, balanced recipes, and |
| 37 | + feel-good nutrition. Whether you’re post-workout, mid-study, or on the |
| 38 | + go, we’ve got a cup that matches your vibe. |
41 | 39 | </p> |
42 | 40 |
|
43 | | - <h2 className="mt-6 text-xl font-bold text-slate-900">What we stand for</h2> |
| 41 | + <h2 className="mt-6 text-xl font-bold text-slate-900"> |
| 42 | + What we stand for |
| 43 | + </h2> |
44 | 44 | <ul className="mt-2 list-disc pl-5 text-slate-700 space-y-1"> |
45 | 45 | <li>100% natural ingredients—whole fruit and greens</li> |
46 | 46 | <li>No added sugar or syrups; sweetness comes from fruit</li> |
47 | 47 | <li>Made-to-order for peak freshness and flavor</li> |
48 | 48 | <li>Eco-conscious packaging where possible</li> |
49 | 49 | </ul> |
50 | 50 |
|
51 | | - <h2 className="mt-6 text-xl font-bold text-slate-900">Sourcing & sustainability</h2> |
| 51 | + <h2 className="mt-6 text-xl font-bold text-slate-900"> |
| 52 | + Sourcing & sustainability |
| 53 | + </h2> |
52 | 54 | <p className="mt-2 text-slate-700"> |
53 | | - We prioritize local markets and seasonal produce when possible, reduce waste |
54 | | - with smart prep, and use recyclable/compostable cups where facilities exist. |
| 55 | + We prioritize local markets and seasonal produce when possible, reduce |
| 56 | + waste with smart prep, and use recyclable/compostable cups where |
| 57 | + facilities exist. |
55 | 58 | </p> |
56 | 59 |
|
57 | 60 | <div className="mt-6 grid grid-cols-1 sm:grid-cols-2 gap-4 rounded-xl border bg-white p-4"> |
58 | 61 | <div> |
59 | 62 | <h3 className="font-semibold text-slate-900">Hours</h3> |
60 | 63 | <p className="text-slate-700 text-sm mt-1"> |
61 | | - Mon–Fri: 8:00–18:00<br /> |
| 64 | + Mon–Fri: 8:00–18:00 |
| 65 | + <br /> |
62 | 66 | Sat–Sun: 9:00–17:00 |
63 | 67 | </p> |
64 | 68 | </div> |
65 | 69 | <div> |
66 | 70 | <h3 className="font-semibold text-slate-900">Contact</h3> |
67 | 71 | <p className="text-slate-700 text-sm mt-1"> |
68 | | - hello@blendrush.example<br /> |
| 72 | + hello@blendrush.example |
| 73 | + <br /> |
69 | 74 | +94 71 234 5678 |
70 | 75 | </p> |
71 | 76 | </div> |
@@ -93,15 +98,25 @@ export default function About() { |
93 | 98 | <div className="text-base font-extrabold tracking-tight text-emerald-600"> |
94 | 99 | blend<span className="text-slate-800">RUSH</span> |
95 | 100 | </div> |
96 | | - <p className="text-xs text-slate-500">Fresh. Fast. Fruit-first.</p> |
| 101 | + <p className="text-xs text-slate-500"> |
| 102 | + Fresh. Fast. Fruit-first. |
| 103 | + </p> |
97 | 104 | </div> |
98 | 105 | </div> |
99 | 106 |
|
100 | 107 | <nav className="text-sm text-slate-700 flex flex-wrap gap-4"> |
101 | | - <Link className="hover:text-slate-900" to="/home">Home</Link> |
102 | | - <Link className="hover:text-slate-900" to="/menu">Menu</Link> |
103 | | - <Link className="hover:text-slate-900" to="/orders">Orders</Link> |
104 | | - <Link className="hover:text-slate-900" to="/about">About</Link> |
| 108 | + <Link className="hover:text-slate-900" to="/home"> |
| 109 | + Home |
| 110 | + </Link> |
| 111 | + <Link className="hover:text-slate-900" to="/menu"> |
| 112 | + Menu |
| 113 | + </Link> |
| 114 | + <Link className="hover:text-slate-900" to="/orders"> |
| 115 | + Orders |
| 116 | + </Link> |
| 117 | + <Link className="hover:text-slate-900" to="/about"> |
| 118 | + About |
| 119 | + </Link> |
105 | 120 | </nav> |
106 | 121 |
|
107 | 122 | <div className="text-sm text-slate-600"> |
|
0 commit comments