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/
|
||||||
*/node_modules/
|
*/node_modules/
|
||||||
*/build/
|
*/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" />
|
||||||
/// <reference types="next/image-types/global" />
|
/// <reference types="next/image-types/global" />
|
||||||
|
/// <reference path="./build/types/routes.d.ts" />
|
||||||
|
|
||||||
// NOTE: This file should not be edited
|
// NOTE: This file should not be edited
|
||||||
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
|
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
|
||||||
|
|||||||
@ -20,12 +20,20 @@ const HeroImageBg = ({
|
|||||||
{mainText}
|
{mainText}
|
||||||
</h1>
|
</h1>
|
||||||
<p className={`text-sm mb-8`}>{subTitle}</p>
|
<p className={`text-sm mb-8`}>{subTitle}</p>
|
||||||
<BaseButton
|
<div className="flex justify-center space-x-4">
|
||||||
href='/login'
|
<BaseButton
|
||||||
label={`${buttonText}`}
|
href="/search-wizard"
|
||||||
color='info'
|
label={`${buttonText}`}
|
||||||
className='px-4 sm:px-6 py-2 '
|
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>
|
||||||
<div className='absolute bottom-2 text-[8px] text-white w-full flex justify-center'>
|
<div className='absolute bottom-2 text-[8px] text-white w-full flex justify-center'>
|
||||||
<a href={imageHero[0]?.photographer_url} target='_blank' rel='noreferrer'>
|
<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 AboutUsSection from '../components/WebPageComponents/AboutUsComponent';
|
||||||
|
|
||||||
import ContactFormSection from '../components/WebPageComponents/ContactFormComponent';
|
import ContactFormSection from '../components/WebPageComponents/ContactFormComponent';
|
||||||
|
import BaseButton from '../components/BaseButton';
|
||||||
|
|
||||||
export default function WebSite() {
|
export default function WebSite() {
|
||||||
const cardsStyle = useAppSelector((state) => state.style.cardsStyle);
|
const cardsStyle = useAppSelector((state) => state.style.cardsStyle);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user