Skip to content

Commit 1f85914

Browse files
committed
correction accès
1 parent 5486845 commit 1f85914

File tree

7 files changed

+24
-19
lines changed

7 files changed

+24
-19
lines changed

src/data/crew.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
export const crewData = [
22
{
33
name: "Douglas Hurley",
4-
images: "/images/crew/image-douglas-hurley.webp",
4+
images: "/space-tourism/images/crew/image-douglas-hurley.webp",
55
role: "Commander",
66
bio: "Douglas Gerald Hurley is an American engineer, former Marine Corps pilot and former NASA astronaut. He launched into space for the third time as commander of Crew Dragon Demo-2.",
77
},
88
{
99
name: "Mark Shuttleworth",
10-
images: "/images/crew/image-mark-shuttleworth.webp",
10+
images: "/space-tourism/images/crew/image-mark-shuttleworth.webp",
1111
role: "Mission Specialist",
1212
bio: "Mark Richard Shuttleworth is the founder and CEO of Canonical, the company behind the Linux-based Ubuntu operating system. Shuttleworth became the first South African to travel to space as a space tourist.",
1313
},
1414
{
1515
name: "Victor Glover",
16-
images: "/images/crew/image-victor-glover.webp",
16+
images: "/space-tourism/images/crew/image-victor-glover.webp",
1717
role: "Pilot",
1818
bio: "Pilot on the first operational flight of the SpaceX Crew Dragon to the International Space Station. Glover is a commander in the U.S. Navy where he pilots an F/A-18.He was a crew member of Expedition 64, and served as a station systems flight engineer.",
1919
},
2020
{
2121
name: "Anousheh Ansari",
22-
images: "/images/crew/image-anousheh-ansari.webp",
22+
images: "/space-tourism/images/crew/image-anousheh-ansari.webp",
2323
role: "Flight Engineer",
2424
bio: "Anousheh Ansari is an Iranian American engineer and co-founder of Prodea Systems. Ansari was the fourth self-funded space tourist, the first self-funded woman to fly to the ISS, and the first Iranian in space.",
2525
},

src/data/technology.js

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,31 @@ export const technologyData = [
22
{
33
name: "launch vehicle",
44
images: {
5-
portrait: "/images/technology/image-launch-vehicle-portrait.jpg",
6-
landscape: "/images/technology/image-launch-vehicle-landscape.jpg",
5+
portrait:
6+
"/space-tourism/images/technology/image-launch-vehicle-portrait.jpg",
7+
landscape:
8+
"/space-tourism/images/technology/image-launch-vehicle-landscape.jpg",
79
},
810
description:
911
"A launch vehicle or carrier rocket is a rocket-propelled vehicle used to carry a payload from Earth's surface to space, usually to Earth orbit or beyond. Our WEB-X carrier rocket is the most powerful in operation. Standing 150 metres tall, it's quite an awe-inspiring sight on the launch pad!",
1012
},
1113
{
1214
name: "space capsule",
1315
images: {
14-
portrait: "/images/technology/image-space-capsule-portrait.jpg",
15-
landscape: "/images/technology/image-space-capsule-landscape.jpg",
16+
portrait:
17+
"/space-tourism/images/technology/image-space-capsule-portrait.jpg",
18+
landscape:
19+
"/space-tourism/images/technology/image-space-capsule-landscape.jpg",
1620
},
1721
description:
1822
"A space capsule is an often-crewed spacecraft that uses a blunt-body reentry capsule to reenter the Earth's atmosphere without wings. Our capsule is where you'll spend your time during the flight. It includes a space gym, cinema, and plenty of other activities to keep you entertained.",
1923
},
2024
{
2125
name: "spaceport",
2226
images: {
23-
portrait: "/images/technology/image-spaceport-portrait.jpg",
24-
landscape: "/images/technology/image-spaceport-landscape.jpg",
27+
portrait: "/space-tourism/images/technology/image-spaceport-portrait.jpg",
28+
landscape:
29+
"/space-tourism/images/technology/image-spaceport-landscape.jpg",
2530
},
2631
description:
2732
"A spaceport or cosmodrome is a site for launching (or receiving) spacecraft, by analogy to the seaport for ships or airport for aircraft. Based in the famous Cape Canaveral, our spaceport is ideally situated to take advantage of the Earth’s rotation for launch.",

src/layouts/BaseLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { backgroundMobile, backgroundDesktop } = Astro.props;
1212
<meta name="description" content="Discover Space Tourism 🚀, an immersive space travel website: destinations, crew, and cutting-edge technologies for an unforgettable journey.">
1313
<meta name="generator" content={Astro.generator} />
1414
<title>Space Tourism</title>
15-
<link rel="stylesheet" href="/style/style.css">
15+
<link rel="stylesheet" href="/space-tourism/style/style.css">
1616
</head>
1717
<body
1818
class="m-0 w-screen h-screen flex flex-col bg-cover"

src/pages/crew.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import CrewContainer from "../components/CrewContainer";
33
import BaseLayout from "../layouts/BaseLayout.astro"
44
5-
const mobileBg = "/images/crew/background-crew-mobile.jpg";
6-
const desktopBg = "/images/crew/background-crew-desktop.jpg";
5+
const mobileBg = "/space-tourism/images/crew/background-crew-mobile.jpg";
6+
const desktopBg = "/space-tourism/images/crew/background-crew-desktop.jpg";
77
---
88
<BaseLayout backgroundMobile={mobileBg} backgroundDesktop={desktopBg}>
99
<section class="flex flex-col justify-center items-center lg:w-full">

src/pages/destination.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
import BaseLayout from "../layouts/BaseLayout.astro";
33
import DestinationContainer from "../components/DestinationContainer";
4-
const mobileBg = "/images/destination/background-destination-mobile.jpg";
5-
const desktopBg = "/images/destination/background-destination-desktop.jpg";
4+
const mobileBg = "/space-tourism/images/destination/background-destination-mobile.jpg";
5+
const desktopBg = "/space-tourism/images/destination/background-destination-desktop.jpg";
66
---
77

88
<BaseLayout backgroundMobile={mobileBg} backgroundDesktop={desktopBg}>

src/pages/home.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import BaseLayout from "../layouts/BaseLayout.astro";
33
import {homeData} from "../data/home";
44
5-
const mobileBg = "/images/home/background-home-mobile.jpg";
6-
const desktopBg = "/images/home/background-home-desktop.jpg";
5+
const mobileBg = "/space-tourism/images/home/background-home-mobile.jpg";
6+
const desktopBg = "/space-tourism/images/home/background-home-desktop.jpg";
77
---
88

99
<BaseLayout backgroundMobile={mobileBg} backgroundDesktop={desktopBg}>

src/pages/technology.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
import BaseLayout from "../layouts/BaseLayout.astro";
33
import TechnologyContainer from "../components/TechnologyContainer";
4-
const mobileBg = "/images/technology/background-technology-mobile.jpg";
5-
const desktopBg = "/images/technology/background-technology-desktop.jpg";
4+
const mobileBg = "/space-tourism/images/technology/background-technology-mobile.jpg";
5+
const desktopBg = "/space-tourism/images/technology/background-technology-desktop.jpg";
66
---
77
<BaseLayout backgroundMobile={mobileBg} backgroundDesktop={desktopBg}>
88
<section class=" flex flex-col items-center lg:h-full lg:flex-grow w-full lg:overflow-hidden lg:mb-12">

0 commit comments

Comments
 (0)