Skip to content

Commit

Permalink
fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbloxhub committed Jul 23, 2023
1 parent f9e2020 commit b6f9685
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
11 changes: 0 additions & 11 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,3 @@ const { title } = Astro.props
<slot />
</body>
</html>

<style is:global>
:root {
--accent: 124, 58, 237;
--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), #da62c4 30%, white 60%);
}

html {
background-color: #F6F6F6;
}
</style>
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import Greeting from "../components/Greeting.svelte"
<Layout title="bitbloxhub's website">
<main class="m-auto p-6 max-w-6xl text-left">
<h1 class="text-5xl font-extrabold m-0">Welcome to bitbloxhub's website</h1>
<Greeting client:load greetings={["hello", "welcome", "good evening", "こんにちは", "こんばんは"]}></Greeting>
<Greeting client:load greetings={["hello", "welcome", "こんにちは"]}></Greeting>
</main>
</Layout>
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"extends": "astro/tsconfigs/strict"
"extends": "astro/tsconfigs/strict",
"exclude": [
"./dist/",
"./node_modules/"
]
}

0 comments on commit b6f9685

Please sign in to comment.