Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml → .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: Linter

on:
push:
Expand All @@ -25,5 +25,5 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Run linting
- name: Run linter
run: npm run lint
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flint programming language</title>
</head>
<body style="background-color: black; color: white;">
<h1 style="padding-top: 10px; padding: 10px;">Work in progress</h1>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/App.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@import "tailwindcss";
@import "tailwindcss"
14 changes: 11 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import './App.css'
import "./App.css";
import logo from "./assets/amber-logo.png";

function App() {
return (null)
return (
<main className="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
<img src={logo} alt="Logo" className="w-64 h-auto rounded-full mb-6" />
<h1 className="text-4xl font-bold text-black dark:text-white text-center">
🚧 Work in progress 🚧
</h1>
</main>
);
}

export default App
export default App;
Binary file added src/assets/amber-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@import "tailwindcss";
@import "tailwindcss"