import { Separator } from "@/components/ui/separator"; import { Config } from "@/data/config"; import { FriendsList } from "@/data/friends"; import type { TFriendItem } from "@/types/friend.type"; import { nanoid } from "nanoid"; import Link from "next/link"; export const FriendLinkList = (props: { friends: TFriendItem[] }) => { return (
{FriendsList.map((item) => ( {item.title} ))}
{"Welcome to exchange our friend links and every high-quality blog websites are welcomed. "} {"Email me please"}
); };