import Link from "next/link";
import { buttonVariants } from "./button";
const Iconss = () => {
const cards = {
aboutCard: {
description:
"Discover more about our services and offerings. We aim to provide the best experience for our users.",
socialLinks: {
x: "https://x.com/SVR_JS",
Mastodon: "https://mastodon.social/@svrjs",
Bluesky: "https://bsky.app/profile/svrjs.org",
Odysee: "https://odysee.com/@SVRJS"
}
}
};
return (
<>
X icon
Mastodon icon
Bluesky icon
Odysee icon
>
);
};
export default Iconss;