Skip to content

Commit

Permalink
file cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
thejackshelton committed Jan 15, 2025
1 parent 5398b39 commit fcb57be
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
33 changes: 16 additions & 17 deletions apps/website/src/components/home/js-chunk/js-chunk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,23 @@ import { component$, useStylesScoped$ } from "@builder.io/qwik";
export const JSChunk = component$(() => {
useStylesScoped$(
`
div {
width: 30px;
height: 30px;
color: var(--off-black);
background: #F1DC4E;
font-family: system-ui, sans-serif;
font-weight: 700;
display: flex;
align-items: end;
justify-content: end;
padding-right: 3px;
}
div {
width: 30px;
height: 30px;
color: var(--off-black);
background: #F1DC4E;
font-family: system-ui, sans-serif;
font-weight: 700;
display: flex;
align-items: end;
justify-content: end;
padding-right: 3px;
}
span {
display: block;
}
`,
span {
display: block;
}
`,
);

return (
Expand Down
4 changes: 2 additions & 2 deletions apps/website/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import Layout from "src/layouts/Layout.astro";
import Hero from "src/layouts/home/Hero.astro";
import Layout from "@layouts/Layout.astro";
import Hero from "@layouts/home/Hero.astro";
---

<Layout title="Qwik + Astro">
Expand Down
3 changes: 2 additions & 1 deletion apps/website/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"paths": {
"@components/*": ["./src/components/*"],
"@icons/*": ["./src/icons/*"],
"@assets/*": ["./src/assets/*"]
"@assets/*": ["./src/assets/*"],
"@layouts/*": ["./src/layouts/*"]
},

"jsx": "react-jsx",
Expand Down

0 comments on commit fcb57be

Please sign in to comment.