-
Notifications
You must be signed in to change notification settings - Fork 1
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 #6 from iosifnicolae2/frontend-update-
Integrate API.
- Loading branch information
Showing
23 changed files
with
353 additions
and
2,795 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@use 'styles/mixinHelper'; | ||
|
||
.links { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 0 30px; | ||
font-weight: 500; | ||
font-size: 18px; | ||
color: #646464; | ||
margin-top: 150px; | ||
margin-bottom: 82px; | ||
flex-wrap: wrap; | ||
|
||
@include mixinHelper.onMobile{ | ||
margin-top: 50px; | ||
margin-bottom: 30px; | ||
padding: 0 30px; | ||
gap: 10px 20px; | ||
} | ||
} |
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,18 @@ | ||
import Link from "next/link"; | ||
|
||
import styles from "./Footer.module.scss"; | ||
import links from "./links.json"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<> | ||
<div className={styles.links}> | ||
{links.map(link => ( | ||
<Link key={link.name} href={link.href}> | ||
<a target={link.target}>{link.name}</a> | ||
</Link> | ||
))} | ||
</div> | ||
</> | ||
); | ||
} |
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,22 @@ | ||
[ | ||
{ | ||
"name": "Contact", | ||
"href": "/", | ||
"target": "_blank" | ||
}, | ||
{ | ||
"name": "Authenticate", | ||
"href": "/", | ||
"target": "_blank" | ||
}, | ||
{ | ||
"name": "Github", | ||
"href": "https://github.com/iosifnicolae2/radio-crestin.com", | ||
"target": "_blank" | ||
}, | ||
{ | ||
"name": "API", | ||
"href": "/", | ||
"target": "_blank" | ||
} | ||
] |
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
Oops, something went wrong.