-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
86b2rcabb: Updating guest user signup landing page
- Loading branch information
Showing
4 changed files
with
55 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
venue-reservation/src/components/design/branding-section.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from "react"; | ||
|
||
interface BrandingSectionProps { | ||
title?: string; | ||
subtitle?: string; | ||
description?: string; | ||
} | ||
|
||
const BrandingSection: React.FC<BrandingSectionProps> = ({ | ||
title = "RS.", | ||
subtitle = "Reservation System", | ||
description = "Effortlessly book and manage your event with our seamless reservation system, designed for convenience and flexibility.", | ||
}) => { | ||
return ( | ||
<div className="bg-gradient-to-b from-[#312405] via-[#735203] to-[#906B11] text-white p-4 sm:p-6 md:p-8 lg:p-10 rounded-3xl shadow-lg w-full h-[50vh] sm:h-[60vh] md:h-[70vh] lg:h-[80vh] xl:h-[85vh] flex flex-col justify-between mx-auto max-w-lg sm:max-w-md md:max-w-lg lg:max-w-xl xl:max-w-2xl"> | ||
<div className="mt-4 sm:mt-6 md:mt-8 lg:mt-12 text-center sm:text-left"> | ||
<h1 className="text-2xl sm:text-3xl md:text-4xl lg:text-5xl font-extrabold italic mb-2 sm:mb-4">{title}</h1> | ||
<h2 className="text-sm sm:text-base md:text-lg lg:text-xl font-semibold mt-2 sm:mt-4">{subtitle}</h2> | ||
</div> | ||
<div className="mt-4 sm:mt-6 md:mt-8 lg:mt-10"> | ||
<p className="text-xs sm:text-sm md:text-base lg:text-lg leading-relaxed">{description}</p> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default BrandingSection; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters