All feature demo

發佈時間

Image#

Photo by Anita Chong on Unsplash

Photo by Anita Chong on Unsplash


Internal link Go to homepage

External link Go to Google

Anchor link Go to Codes sestion


Codes#

We can write some inline code!

sample.js
const a = 1; a = 2;
App.tsx
import "@/styles/globals.css"; import type { AppProps } from "next/app"; import Head from "next/head"; import { ThemeProvider } from "next-themes"; import LayoutWrapper from "@/components/LayoutWrapper"; function MyApp({ Component, pageProps }: AppProps) { return ( <ThemeProvider attribute="class"> <Head> <meta name="viewport" content="viewport-fit=cover" /> </Head> <LayoutWrapper> <Component {...pageProps} /> </LayoutWrapper> </ThemeProvider> ); } export default MyApp;

More codes#

some.js
const a = 1; - a = 2; + a = 2; a = 3;
Command
$ echo "Hello world!"