1234567891011121314151617181920212223242526 |
- /** visit to : http://localhost:7433/posts/first-post
- * @Description: default
- * @Date: 2023年09月13日 Wednesday
- * @Author liuyuqi.gov@msn.
- */
- import Link from 'next/link'
- import Head from 'next/head';
- export default function FirstPost() {
- return (
- <>
- <Head>
- <title>First Post</title>
- </Head>
- <h1>First Post</h1>
- <h2>
- <Link href="/">
- <a>Back to home</a>
- {/* <img src="/vercel.svg" alt="Vercel Logo" className="logo" /> */}
- </Link>
- </h2>
- </>
- );
- }
|