import {
Anchor,
Button,
Center,
Container,
Stack,
Text,
Title,
} from "@mantine/core";
import Link from "next/link";
import Logo from "../../components/Logo";
import Meta from "../../components/Meta";
import useConfig from "../../hooks/config.hook";
const Intro = () => {
const config = useConfig();
return (
<>
Welcome to Pingvin Share
If you enjoy Pingvin Share please ⭐️ it on{" "}
GitHub
{" "}
or{" "}
buy me a coffee
{" "}
if you want to support my work.
Enough talked, have fun with Pingvin Share!How to you want to continue?
>
);
};
export default Intro;