diff --git a/venue-reservation/src/app/signup-landing/page.tsx b/venue-reservation/src/app/signup-landing/page.tsx index 5b4f13b..739a102 100644 --- a/venue-reservation/src/app/signup-landing/page.tsx +++ b/venue-reservation/src/app/signup-landing/page.tsx @@ -1,25 +1,15 @@ import React from "react"; import Card from "@/components/ui/card"; import { Button } from "@/components/ui/button"; - +import BrandingSection from "@/components/branding-section"; const SignupLanding = () => { return (
{/* Left Branding Section */} -
-
-

RS.

-

Reservation System

-
-
-

- “Effortlessly book and manage your event with our seamless reservation system, designed for convenience and flexibility.” -

-
-
- + + {/* Right Sign-Up Section */}
diff --git a/venue-reservation/src/components/branding-section.tsx b/venue-reservation/src/components/branding-section.tsx new file mode 100644 index 0000000..21d5ec5 --- /dev/null +++ b/venue-reservation/src/components/branding-section.tsx @@ -0,0 +1,29 @@ +// src/components/branding-section.tsx + +import React from "react"; + +interface BrandingSectionProps { + title?: string; + subtitle?: string; + description?: string; +} + +const BrandingSection: React.FC = ({ + title = "RS.", + subtitle = "Reservation System", + description = "Effortlessly book and manage your event with our seamless reservation system, designed for convenience and flexibility.", +}) => { + return ( +
+
+

{title}

+

{subtitle}

+
+
+

{description}

+
+
+ ); +}; + +export default BrandingSection;