import { css } from "@emotion/css"; import { Center, Cover, Stack } from "@firebox/components"; const App = (props: { name: string }) => { const {name} = props; return (

Hello, {name}!

Welcome to a website with a certain design philosophy. Tell me how it's working out! I want to see this text wrap a few times. Hopefully this sentence will help.

A page by Dylan Pizzo

Hello, {name}!

Welcome to a website with a certain design philosophy. Tell me how it's working out! I want to see this text wrap a few times. Hopefully this sentence will help.

A page by Dylan Pizzo
); }; export const app = ;