Skip to content

Commit

Permalink
changed nextconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovodo committed May 20, 2024
1 parent bf78014 commit 0cf64ba
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
4 changes: 4 additions & 0 deletions public/images/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions src/components/FooterItem.jsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
import useFonts from "@/hooks/useFonts";
import Image from "next/image";
import Link from "next/link";
import React from "react";

const FooterItem = ({ item }) => {
const { roboto } = useFonts();
return (
<div style={roboto.style} className='w-max px-[20px]'>
<div style={roboto.style} className='w-[200px] px-[20px]'>
<h4 className=' text-white text-[22px] mb-[49px]'>{item.title}</h4>
{item.content.map((content, index) => {
return (
<Link
key={index.toString()}
href={content.link}
className='text-white hover:text-cta duration-200 block my-2 font-thin'
className='text-white flex hover:text-cta duration-200 gap-2 hover:gap-3 my-2 font-thin'
>
{content.name}
<p>{content.name}</p>
<Image
src={"images/arrow.svg"}
width={12}
height={12}
alt='arrow'
/>
</Link>
);
})}
Expand Down

0 comments on commit 0cf64ba

Please sign in to comment.