Version 1
This commit is contained in:
parent
a18153e57d
commit
b55a3e4e01
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
1
frontend/json/runtimeError.json
Normal file
1
frontend/json/runtimeError.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
1
frontend/next-env.d.ts
vendored
1
frontend/next-env.d.ts
vendored
@ -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.
|
||||
|
||||
@ -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'>
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user