Landing
The Landing component serves as the main page for the application's lading page. It brings together various sections and components that are essentials for selling and presenting your application.
Internal Components: Imports and renders the following components:
Key Style Classes
landing
: Used on the root<div>
to apply a general styling structure for the landing page.flex flex-col
: Configures the page to stack elements vertically, withflex
used for layout control.
// Landing component is directly used in the route structure within the application.
<Route path="/" element={<Landing />} />
Additional Notes
The
Video
andFinalMessage
components receive specific props for customization.Video
accepts avideoSource
prop.FinalMessage
acceptstitle
,subtitle
, and anicon
.
The landing structure ensures that each section fits within a vertically spaced layout (
gap-40
) for consistent spacing between sections.
This should cover everything for Landing
.
Last updated