diff --git a/.github/workflows/test.yml b/.github/workflows/linter.yml similarity index 91% rename from .github/workflows/test.yml rename to .github/workflows/linter.yml index 50a8461..8e6849e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/linter.yml @@ -1,4 +1,4 @@ -name: Test +name: Linter on: push: @@ -25,5 +25,5 @@ jobs: - name: Install dependencies run: npm ci - - name: Run linting + - name: Run linter run: npm run lint \ No newline at end of file diff --git a/index.html b/index.html index 00e1b84..3cd2711 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,7 @@ Flint programming language - -

Work in progress

+
diff --git a/src/App.css b/src/App.css index f1d8c73..4a5c8e5 100644 --- a/src/App.css +++ b/src/App.css @@ -1 +1 @@ -@import "tailwindcss"; +@import "tailwindcss" \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index 9f867ba..d102582 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,7 +1,15 @@ -import './App.css' +import "./App.css"; +import logo from "./assets/amber-logo.png"; function App() { - return (null) + return ( +
+ Logo +

+ 🚧 Work in progress 🚧 +

+
+ ); } -export default App +export default App; diff --git a/src/assets/amber-logo.png b/src/assets/amber-logo.png new file mode 100644 index 0000000..8a52095 Binary files /dev/null and b/src/assets/amber-logo.png differ diff --git a/src/index.css b/src/index.css index f1d8c73..4a5c8e5 100644 --- a/src/index.css +++ b/src/index.css @@ -1 +1 @@ -@import "tailwindcss"; +@import "tailwindcss" \ No newline at end of file