diff --git a/src/App.tsx b/src/App.tsx index 995e0ff..03cae9c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,6 +7,7 @@ import { Navbar } from "@/components/Navbar"; import Index from "./pages/Index"; import Testimonies from "./pages/Testimonies"; import Contact from "./pages/Contact"; +import Briefing from "./pages/Briefing"; import NotFound from "./pages/NotFound"; const queryClient = new QueryClient(); @@ -22,6 +23,7 @@ const App = () => ( } /> } /> } /> + } /> {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } /> diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 6f23af2..0a7073d 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -1,5 +1,5 @@ import { NavLink } from "react-router-dom"; -import { Home, MessageSquare, Mail } from "lucide-react"; +import { Home, MessageSquare, Mail, FileText } from "lucide-react"; export const Navbar = () => { const getNavClass = ({ isActive }: { isActive: boolean }) => @@ -24,6 +24,10 @@ export const Navbar = () => { Home + + + Briefing + Testimonies diff --git a/src/pages/Briefing.tsx b/src/pages/Briefing.tsx new file mode 100644 index 0000000..c7f7835 --- /dev/null +++ b/src/pages/Briefing.tsx @@ -0,0 +1,157 @@ +import { Home, Users, Car, AlertTriangle } from "lucide-react"; +import carparkHero from "@/assets/victoria-way-carpark.jpg"; +import { StatCard } from "@/components/StatCard"; + +const Briefing = () => { + return ( +
+ {/* Header */} +
+
+
+ +
+

+ Victoria Way Carpark Campaign Briefing +

+

+ Quick overview of the situation and proposed solutions +

+
+
+ + {/* Impact Stats */} +
+
+
+ + + + +
+
+
+ + {/* The Situation */} +
+
+

The Situation

+ +
+

Safety First

+

+ Victoria Way Carpark was closed due to safety concerns. We support the council's decision to prioritize public safety. +

+
+ +
+

What We're Asking For:

+
    +
  • + 1. + Regular Updates: No information has been provided on safety surveys, remediation progress, or future plans +
  • +
  • + 2. + Parking Solutions: This area of Woking needs adequate parking for residents, workers, and visitors +
  • +
  • + 3. + Recognition of Impact: Families, elderly residents, disabled individuals, and night workers face daily hardship +
  • +
+
+
+
+ + {/* Proposed Solutions */} +
+
+

Proposed Solutions

+ +
+

Immediate Solution Available

+

+ The DoubleTree Hilton hotel has an underground car park that runs directly beneath Enterprise Place. + Providing residents access to this existing infrastructure could solve the problem immediately. +

+
+ +
+

Short-Term Options:

+
    +
  • + + Temporary parking permits for Enterprise Place residents +
  • +
  • + + Negotiate with nearby facilities (Dukes Court, Asahi Building) +
  • +
  • + + Convert unused sites to temporary parking +
  • +
  • + + Discounted rates at town centre carparks +
  • +
+
+ +
+

Long-Term Solutions:

+
    +
  • + 1. + Provide access to DoubleTree Hilton underground car park +
  • +
  • + 2. + Repair and reopen Victoria Way Carpark +
  • +
  • + 3. + Build new multi-storey parking facility +
  • +
  • + 4. + Dedicated resident parking zones +
  • +
+
+
+
+ + {/* Call to Action */} +
+
+
+

Support the Campaign

+

+ Join hundreds of residents in calling for parking solutions and regular communication from the council. +

+
+

Learn more and sign the petition:

+

savevictoriawaycarpark.com

+
+
+
+
+ + {/* Footer */} + +
+ ); +}; + +export default Briefing;