mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
526 B
24 lines
526 B
import { chakra } from "@chakra-ui/react"
|
|
import Container from "components/container"
|
|
import SEO from "components/seo"
|
|
import siteConfig from "configs/site-config"
|
|
import Nav from "layouts/nav/nav"
|
|
import PageContainer from "layouts/page-container"
|
|
import React from "react"
|
|
|
|
const PostPage = () => (
|
|
<>
|
|
<SEO
|
|
title={siteConfig.seo.title}
|
|
description={siteConfig.seo.description}
|
|
/>
|
|
<Nav />
|
|
<PageContainer>
|
|
<chakra.h1>Post</chakra.h1>
|
|
</PageContainer>
|
|
</>
|
|
)
|
|
|
|
export default PostPage
|
|
|