Skip to content

Commit

Permalink
Merge pull request #58 from iamNilotpal/feature-auth
Browse files Browse the repository at this point in the history
Update index.html
  • Loading branch information
iamNilotpal authored Oct 22, 2024
2 parents 4114630 + 2ea6edb commit df7d1b4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 26 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint and Format Code
name: Lint Code

on:
pull_request:
Expand All @@ -8,7 +8,7 @@ on:

jobs:
ci:
name: Run Lint and Format scripts
name: Run Lint Script
runs-on: ubuntu-latest
steps:
- name: Clone repository
Expand All @@ -19,11 +19,11 @@ jobs:
with:
node-version: 22

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: pnpm install

- name: Run Linter
run: pnpm lint

- name: Run Formatter
run: pnpm format
44 changes: 23 additions & 21 deletions apps/web/src/app.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
rel="stylesheet" />
<title>Openpulse - Monitor, Optimize, and Maximize Performance.</title>
%sveltekit.head%
</head>

<body data-sveltekit-preload-data="hover" class="h-full w-full">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
rel="stylesheet" />
<title>Openpulse - Monitor, Optimize and Maximize Performance.</title>
%sveltekit.head%
</head>

<body data-sveltekit-preload-data="hover" class="h-full w-full">
<div style="display: contents">%sveltekit.body%</div>
</body>

</html>

0 comments on commit df7d1b4

Please sign in to comment.