-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Hackathon-Hacked2023/christina-frontend
merge merge pls :<
- Loading branch information
Showing
16 changed files
with
451 additions
and
160 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,34 +1,35 @@ | ||
import React from 'react'; | ||
import './Footer.css'; | ||
import { Button } from './Button'; | ||
import { Link } from 'react-router-dom'; | ||
import React from "react"; | ||
import "./Footer.css"; | ||
import { Button } from "./Button"; | ||
import { Link } from "react-router-dom"; | ||
|
||
function Footer() { | ||
return ( | ||
<div className='footer-container'> | ||
<section className='footer-subscription'> | ||
<p className='footer-subscription-heading'> | ||
<div className="footer-container"> | ||
<section className="footer-subscription"> | ||
<p className="footer-subscription-heading heading-3"> | ||
easy-to-use semantics analysis tool | ||
</p> | ||
</section> | ||
<div class='footer-links'> | ||
<div className='footer-link-wrapper'> | ||
</div> | ||
<div class="footer-links"> | ||
<div className="footer-link-wrapper"></div> | ||
</div> | ||
<section class='social-media'> | ||
<div class='social-media-wrap'> | ||
<div class='footer-logo'> | ||
<Link to='/' className='social-logo'> | ||
<section class="social-media"> | ||
<div class="social-media-wrap"> | ||
<div class="footer-logo"> | ||
<Link to="/" className="social-logo"> | ||
Tone Teller | ||
<i class='fas fa-sms' /> | ||
<i class="fas fa-sms" /> | ||
</Link> | ||
</div> | ||
<small class='website-rights'>Hacked by Christina, Aniket, Ray, Julia, Trinity, Yui</small> | ||
<small class='website-rights'>HackED © 2023</small> | ||
<small class="website-rights"> | ||
Hacked by Christina, Aniket, Ray, Julia, Trinity, Yui | ||
</small> | ||
<small class="website-rights">HackED © 2023</small> | ||
</div> | ||
</section> | ||
</div> | ||
); | ||
} | ||
|
||
export default Footer; | ||
export default Footer; |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Hero from "./Hero"; | ||
import LandingContent from "./LandingContent"; | ||
|
||
export default function Home() { | ||
return ( | ||
<div> | ||
<Hero></Hero> | ||
<LandingContent></LandingContent> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.