-
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.
- Loading branch information
github
committed
Mar 17, 2023
1 parent
d31ec44
commit fd369ed
Showing
7 changed files
with
101 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,40 @@ | ||
import styles from '/components/footer/footer.module.css' | ||
import Link from 'next/link' | ||
|
||
|
||
export default function Footer() { | ||
return ( | ||
<footer className={styles.footer}> | ||
return ( | ||
<footer className={styles.footer}> | ||
<div className={styles.social}> | ||
<a href="#"><i className="fab fa-instagram"></i></a> | ||
<a href="#"><i className="fab fa-twitter"></i></a> | ||
<a href="https://github.com/suzusou"><i className="fab fa-github"></i></a> | ||
<a href="#"><i className="fab fa-facebook"></i></a> | ||
<Link href="/" legacyBehavior><a> <i className="fab fa-instagram"></i></a></Link> | ||
<Link href="/" legacyBehavior><a><i className="fab fa-twitter"></i></a></Link> | ||
<Link href="https://github.com/suzusou" legacyBehavior><a><i className="fab fa-github"></i></a></Link> | ||
<Link href="/" legacyBehavior><a><i className="fab fa-facebook"></i></a></Link> | ||
</div> | ||
|
||
<ul className={styles.list}> | ||
<li> | ||
<a href="#">Section1</a> | ||
<Link href="/" > Section1</Link> | ||
</li> | ||
<li> | ||
<a href="#">Section2</a> | ||
<Link href="/" > Section2</Link> | ||
</li> | ||
<li> | ||
<a href="#">Section3</a> | ||
<Link href="/" > Section3</Link> | ||
</li> | ||
<li> | ||
<a href="#">Section4</a> | ||
<Link href="/" > Section4</Link> | ||
</li> | ||
<li> | ||
<a href="#">Section5</a> | ||
<Link href="/" > Section5</Link> | ||
</li> | ||
|
||
<p className={styles.copyright}> | ||
S.S-20220219 @ 2023 | ||
</p> | ||
</ul> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,36 @@ | ||
import styles from '/components/header/header.module.css' | ||
import Link from 'next/link' | ||
|
||
export default function Header() { | ||
return ( | ||
<header className={styles.header}> | ||
return ( | ||
<header className={styles.header}> | ||
<div className={styles.container}> | ||
<div className={styles.area_logo_header}> | ||
<a className={styles.logo}href="https://github.com/suzusou"> | ||
<div className={styles.logo_name}>Sample Site</div> | ||
</a> | ||
<Link href="https://github.com/suzusou" legacyBehavior> | ||
<a className={styles.logo} > | ||
<div className={styles.logo_name}>Sample Site</div> | ||
</a> | ||
</Link> | ||
</div> | ||
|
||
<nav className={styles.area_nav_header}> | ||
<ul className={styles.list_nav_header}> | ||
<li className={styles.lists}> | ||
<a href="" className={styles.list1}>Section1</a> | ||
<Link href="/" >Section1</Link> | ||
</li> | ||
<li className={styles.lists}> | ||
<a href="" className={styles.list2}>Section2</a> | ||
<Link href="/" >Section2</Link> | ||
</li> | ||
<li className={styles.lists}> | ||
<a href="" className={styles.list3}>Section3</a> | ||
<Link href="/" >Section3</Link> | ||
</li> | ||
<li className={styles.lists}> | ||
<a href="" className={styles.list4}>Section4</a> | ||
<Link href="/" >Section4</Link> | ||
</li> | ||
|
||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
) | ||
) | ||
} |
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,23 +1,22 @@ | ||
import Head from 'next/head' | ||
import Header from '../../components/header/header' | ||
import Contents from '../../components/contents/contents' | ||
import Footer from '../../components/footer/footer' | ||
|
||
import Header from '/components/header/header' | ||
import Contents from '/components/contents/contents' | ||
import Footer from '/components/footer/footer' | ||
|
||
export default function Home() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Create Next App</title> | ||
<title>Site Design</title> | ||
<meta name="description" content="Generated by create next app" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"></link> | ||
</Head> | ||
|
||
< Header /> | ||
<Contents /> | ||
< 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
fd369ed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
react-site – ./
react-site-weld.vercel.app
react-site-git-main-suzusou.vercel.app
react-site-suzusou.vercel.app