Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
OmPreetham committed Apr 16, 2024
1 parent ca8959b commit b5e8907
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
name="description"
content="A perfect challenge for beginners, this project will get you working with a two column layout."
/>
<link rel="icon" type="image/svg+xml" href="./images/favicon-32x32.png" />
<link rel="icon" type="image/svg+xml" href="images/favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Huddle Landing Page with Single Introductory Section</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions src/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

body {
background-color: var(--violet);
background-image: url(./images/bg-desktop.svg);
background-image: url(/images/bg-desktop.svg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Expand Down Expand Up @@ -127,7 +127,7 @@ footer * {

@media screen and (max-width: 700px) {
body {
background-image: url(./images/bg-mobile.svg);
background-image: url(images/bg-mobile.svg);
text-align: center;
}
section {
Expand Down
4 changes: 2 additions & 2 deletions src/components/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ const LandingPage = () => {
return (
<>
<header>
<img src="./images/logo.svg" alt="Huddle Logo" />
<img src="images/logo.svg" alt="Huddle Logo" />
</header>
<main>
<section>
<article>
<img
src="./images/illustration-mockups.svg"
src="images/illustration-mockups.svg"
alt="Illustration Mockup"
/>
</article>
Expand Down

0 comments on commit b5e8907

Please sign in to comment.