Jan 29, 2022

Kitchen Sink Example Test

This is a kitchen sink example that shows all possible types of content that you can use with the Platforms Starter Kit

Steven Tey
by Steven Tey
Kitchen Sink Example Test

H2 Header

H3 Header

This sentence is full of bold text, italicized text, bold and italicized text, inline code, external Link etc.


Blockquotes /

Ordered list, unordered list, nested list

  1. Item #1
    • Nested unordered item #1
    • Nested unordered item #2

Inline Images

hello## Code Snippets

// middleware.ts

export default function middleware (req, ev) {
  console.log('Edit and run at the edge!')
  
  return new Response({
    ip: req.ip,
    geo: req.geo, // this will spin the globe!
    ua: req.ua
  })
}
Continue Reading