-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lint fixes
- Loading branch information
Showing
49 changed files
with
401 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// src/components/common/LoadingMessage/LoadingMessage.tsx | ||
import React from 'react'; | ||
import React from "react"; | ||
|
||
const LoadingMessage: React.FC = () => { | ||
return <div className="loading-message">Loading...</div>; | ||
}; | ||
|
||
export default LoadingMessage; | ||
export default LoadingMessage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
|
||
import React from 'react'; | ||
import React from "react"; | ||
|
||
const GalleryHeader: React.FC = () => { | ||
return ( | ||
<div className="gallery-header"> | ||
<h1 className="gallery-title">Gallery Search</h1> | ||
<div className="search-container"> | ||
<input type="text" className="search-bar" placeholder="Search" /> | ||
<img src="/assets/icons/search-icon.png" alt="Search Icon" className="search-icon" /> | ||
<img | ||
src="/assets/icons/search-icon.png" | ||
alt="Search Icon" | ||
className="search-icon" | ||
/> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default GalleryHeader; | ||
export default GalleryHeader; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
|
||
import { Link } from 'react-router-dom'; | ||
import React from 'react'; | ||
import { Link } from "react-router-dom"; | ||
import React from "react"; | ||
|
||
const HomeHero: React.FC = () => { | ||
return ( | ||
<div className="homepage"> | ||
<div className="background-img"></div> | ||
<div className="content"> | ||
<h1>Send us your<br />Satellite Streak</h1> | ||
<Link to="/about" className="learn-more-btn">Learn more</Link> | ||
<h1> | ||
Send us your | ||
<br /> | ||
Satellite Streak | ||
</h1> | ||
<Link to="/about" className="learn-more-btn"> | ||
Learn more | ||
</Link> | ||
<div className="Home-Line"></div> | ||
<Link to="/gallery" className="gallery-link">View Gallery ›</Link> | ||
<Link to="/gallery" className="gallery-link"> | ||
View Gallery › | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default HomeHero; | ||
export default HomeHero; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.