first-post.js 534 B

1234567891011121314151617181920212223242526
  1. /** visit to : http://localhost:7433/posts/first-post
  2. * @Description: default
  3. * @Date: 2023年09月13日 Wednesday
  4. * @Author liuyuqi.gov@msn.
  5. */
  6. import Link from 'next/link'
  7. import Head from 'next/head';
  8. export default function FirstPost() {
  9. return (
  10. <>
  11. <Head>
  12. <title>First Post</title>
  13. </Head>
  14. <h1>First Post</h1>
  15. <h2>
  16. <Link href="/">
  17. <a>Back to home</a>
  18. {/* <img src="/vercel.svg" alt="Vercel Logo" className="logo" /> */}
  19. </Link>
  20. </h2>
  21. </>
  22. );
  23. }