import React from 'react'; import { Link, useParams } from 'react-router-dom'; import { Typography, Alert, Button } from '@material-tailwind/react'; const Config = () => { const { id } = useParams(); return (
Configure DNS Add the following records to your domain
Type Name Value
A @ 56.49.19.21
CNAME www cname.snowballtools.xyz
^It can take up to 48 hours for these updates to reflect globally.
); }; export default Config;