feat(SW-185): basic setup for new footer with mocked data
This commit is contained in:
25
components/Footer/Details/index.tsx
Normal file
25
components/Footer/Details/index.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import Image from "@/components/Image"
|
||||
|
||||
import styles from "./details.module.css"
|
||||
|
||||
export default async function FooterDetails() {
|
||||
return (
|
||||
<section className={styles.details}>
|
||||
<div className={styles.imageContainer}>
|
||||
<Image
|
||||
alt="Scandic Hotels logo"
|
||||
className={styles.logo}
|
||||
data-js="scandiclogoimg"
|
||||
data-nosvgsrc="/_static/img/scandic-logotype.png"
|
||||
itemProp="logo"
|
||||
height={30}
|
||||
src="/_static/img/scandic-logotype-white.svg"
|
||||
width={138}
|
||||
/>
|
||||
<div className={styles.socialLinks}>
|
||||
<nav></nav>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user