~|

Sat, Jul 16, 2005

Example Post

65 words

1 min read

<Image alt={

Bridge
} src={
/images/bridge.jpg
} width={1440} height={960} priority />

Heading H2

This is an example blog post with React components. This page is using the

Image
component from Next.js.

<Image alt={`Bridge`} src={`/images/bridge.jpg`} width={1440} height={960} priority />

Code Blocks

This starter also comes with fancy code blocks with code titles.

import React, { useState } from 'react'; function Example() { // Declare a new state variable, which we'll call "count" const [count, setCount] = useState(0); return ( <div> <p>You clicked {count} times</p> <button onClick={() => setCount(count + 1)}> Click me </button> </div> ); }

Go back Home.

Go Back