diff --git a/src/pages/genshin/index.tsx b/src/pages/genshin/index.tsx new file mode 100644 index 00000000..862c422d --- /dev/null +++ b/src/pages/genshin/index.tsx @@ -0,0 +1,20 @@ +import { Box, Heading, Paragraph } from '@theme-ui/components' +import React from 'react' +import Breadcrumb from '../../components/organisms/Breadcrumb' +import RootNavigator from '../../components/organisms/RootNavigator' + +const GenshinIndexPage = () => { + return ( + + + + + + Genshin + Under Construction... + + + ) +} + +export default GenshinIndexPage