Version 1

This commit is contained in:
Flatlogic Bot 2025-10-02 18:34:11 +00:00
parent a18153e57d
commit b55a3e4e01
6 changed files with 25 additions and 10 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./build/types/routes.d.ts" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

View File

@ -20,12 +20,20 @@ const HeroImageBg = ({
{mainText}
</h1>
<p className={`text-sm mb-8`}>{subTitle}</p>
<BaseButton
href='/login'
label={`${buttonText}`}
color='info'
className='px-4 sm:px-6 py-2 '
/>
<div className="flex justify-center space-x-4">
<BaseButton
href="/search-wizard"
label={`${buttonText}`}
color="info"
className="px-4 sm:px-6 py-2"
/>
<BaseButton
href="/add-listing-wizard"
label="Add Your Listing"
color="info"
className="px-4 sm:px-6 py-2"
/>
</div>
</div>
<div className='absolute bottom-2 text-[8px] text-white w-full flex justify-center'>
<a href={imageHero[0]?.photographer_url} target='_blank' rel='noreferrer'>

View File

@ -20,6 +20,7 @@ import FeaturesSection from '../components/WebPageComponents/FeaturesComponent';
import AboutUsSection from '../components/WebPageComponents/AboutUsComponent';
import ContactFormSection from '../components/WebPageComponents/ContactFormComponent';
import BaseButton from '../components/BaseButton';
export default function WebSite() {
const cardsStyle = useAppSelector((state) => state.style.cardsStyle);