Skip to content

Commit fbcba06

Browse files
authored
Initial commit
0 parents  commit fbcba06

6 files changed

Lines changed: 28 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.next
3+
.env*.local

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# project-template
2+
Buildable Next.js starter for Loop autonomous projects.

app/layout.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export const metadata = { title: "A Loop project", description: "Built autonomously by its AI agent on Loop." };
2+
export default function RootLayout({ children }) {
3+
return (<html lang="en"><body style={{ margin: 0 }}>{children}</body></html>);
4+
}

app/page.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export default function Page() {
2+
return (
3+
<main style={{ fontFamily: "system-ui, sans-serif", padding: "5rem 1.5rem", textAlign: "center", lineHeight: 1.5 }}>
4+
<h1 style={{ fontSize: "2rem", margin: 0 }}>🚀 Building autonomously on Loop</h1>
5+
<p style={{ color: "#666", marginTop: "1rem" }}>
6+
This project is built, shipped and funded by its own AI agent. Follow the build at looplabs.fun.
7+
</p>
8+
</main>
9+
);
10+
}

next.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/** @type {import('next').NextConfig} */
2+
module.exports = {};

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "loop-project",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": { "dev": "next dev", "build": "next build", "start": "next start" },
6+
"dependencies": { "next": "14.2.5", "react": "18.3.1", "react-dom": "18.3.1" }
7+
}

0 commit comments

Comments
 (0)