Skip to content

Commit

Permalink
Merge pull request #279 from bndkt/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
bndkt authored Dec 15, 2023
2 parents b66550c + e134fdc commit d38f57b
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 70 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/eas-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eas-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/seed-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Web Preview
on:
push:
branches:
- main
- dev
paths:
- apps/web/**/*
pull_request:
Expand All @@ -15,7 +15,7 @@ jobs:
url: ${{ steps.cloudflare-publish.outputs.url }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
url: ${{ steps.cloudflare-publish.outputs.url }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
18 changes: 0 additions & 18 deletions apps/web/app/entry.client.tsx

This file was deleted.

40 changes: 0 additions & 40 deletions apps/web/app/entry.server.tsx

This file was deleted.

6 changes: 5 additions & 1 deletion apps/web/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,18 @@ export const meta: MetaFunction = () => [
];

export const links: LinksFunction = () => [
{ rel: "preconnect", href: "https://fonts.gstatic.com" },
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css?family=Inter&display=swap",
},
{ rel: "stylesheet", href: styles },
{ rel: "apple-touch-icon", sizes: "180x180", href: "/apple-touch-icon.png" },
{
rel: "icon",
type: "image/png",
href: "/favicon.png",
},
// { rel: "stylesheet", href: "/fonts/inter.woff2" },
];

export default function App() {
Expand Down
15 changes: 10 additions & 5 deletions apps/web/app/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
@tailwind components;
@tailwind utilities;

@font-face {
font-family: "Inter var";
src:
local("Inter var"),
url("/fonts/inter.woff2") format("woff");
:root {
font-family: Inter, sans-serif;
font-feature-settings:
"liga" 1,
"calt" 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
:root {
font-family: InterVariable, sans-serif;
}
}
Binary file removed apps/web/public/fonts/inter.woff2
Binary file not shown.

0 comments on commit d38f57b

Please sign in to comment.