Skip to content

Commit

Permalink
change path
Browse files Browse the repository at this point in the history
  • Loading branch information
graziabaiamonte committed Apr 22, 2024
1 parent 9003556 commit 1c578e3
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ body {

.custom {
background-color: rgba(0, 0, 0, 0.2);
background-image: url(/heroBG.jpg);
background-image: url(/Landing-page-demo/heroBG.jpg);
position: relative;
}

Expand Down
2 changes: 1 addition & 1 deletion components/Camp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CampSite = ({backgroundImage, title, subtitle, peopleJoined}:CampProps) =>
<div className=" flexCenter gap-4 ">
<div className="rounded-full p-4 bg-white/75 ">
<Image
src="/code.svg"
src="/Landing-page-demo/code.svg"
alt="map"
width={28}
height={28}
Expand Down
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Footer() {
gap-[10%] md:flex-row'>
<Link href="/" className="mb-10">
<Image
src="/logo.png"
src="/Landing-page-demo/logo.png"
alt="logo"
width={74}
height={29}
Expand Down
4 changes: 2 additions & 2 deletions components/GetApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function GetApp() {
<Button
type="button"
title="Play Store"
icon="/android.svg"
icon="/Landing-page-demo/android.svg"
variant="btn_white"
full
/>
Expand All @@ -35,7 +35,7 @@ function GetApp() {

<div className="flex flex-1 items-center justify-end">
<Image
src="/mobile.png"
src="/Landing-page-demo/mobile.png"
alt="phone"
width={550}
height={870}
Expand Down
2 changes: 1 addition & 1 deletion components/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Guide() {
<div className="flexCenter max-container relative w-full h-[800px]">

<Image
src="/mac.jpg"
src="/Landing-page-demo/mac.jpg"
alt="mac"
width={1440}
height={380}
Expand Down
4 changes: 2 additions & 2 deletions components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Hero() {

{Array(5).fill(1).map((_, index) => (
<Image
src="/star.svg"
src="/Landing-page-demo/star.svg"
key={index}
alt="star"
width={24}
Expand Down Expand Up @@ -67,7 +67,7 @@ function Hero() {
<div className="flex flex-col">
<div className="flexBetween">
<p className="regular-16 text-black">Location</p>
<Image src="/close.svg" alt="close" width={24} height={24}/>
<Image src="/Landing-page-demo/close.svg" alt="close" width={24} height={24}/>
</div>
<p className="bold-20 text-white">Lorem, ipsum dolor.</p>
</div>
Expand Down
22 changes: 11 additions & 11 deletions constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ export const NAV_LINKS = [

// CAMP SECTION
export const PEOPLE_URL = [
'/person-1.png',
'/person-2.png',
'/person-3.png',
'/person-4.png',
'/Landing-page-demo/person-1.png',
'/Landing-page-demo/person-2.png',
'/Landing-page-demo/person-3.png',
'/Landing-page-demo/person-4.png',
];

// FEATURES SECTION
export const FEATURES = [
{
title: 'lorem ipsum demo',
icon: '/code.svg',
icon: '/Landing-page-demo/code.svg',
variant: 'green',
description:
`Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Expand All @@ -29,7 +29,7 @@ export const NAV_LINKS = [
},
{
title: 'lorem ipsum demo',
icon: '/calendar.svg',
icon: '/Landing-page-demo/calendar.svg',
variant: 'green',
description:
`Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Expand All @@ -39,7 +39,7 @@ export const NAV_LINKS = [
},
{
title: 'lorem ipsum demo',
icon: '/tech.svg',
icon: '/Landing-page-demo/tech.svg',
variant: 'green',
description:
`Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Expand All @@ -49,7 +49,7 @@ export const NAV_LINKS = [
},
{
title: 'lorem ipsum demo',
icon: '/branch.svg',
icon: '/Landing-page-demo/branch.svg',
variant: 'orange',
description:
`Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Expand Down Expand Up @@ -87,8 +87,8 @@ export const NAV_LINKS = [
export const SOCIALS = {
title: 'Social',
links: [
'/facebook.svg',
'/instagram.svg',
'/youtube.svg',
'/Landing-page-demo/facebook.svg',
'/Landing-page-demo/instagram.svg',
'/Landing-page-demo/youtube.svg',
],
};

0 comments on commit 1c578e3

Please sign in to comment.