mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
|
|
// app/builder/page.js
|
||
|
|
|
||
|
|
export default function BuilderPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1>About Us</h1>
|
||
|
|
<p>This is the about page.</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|