Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 47 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"astro": "^6.1.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.2.4"
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.0"
}
}
18 changes: 18 additions & 0 deletions src/components/TextExample.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
import '../styles/global.css';
---

<div class="display-1">Cherry On Tech (Display-1)</div>
<div class="display-1 font-bold">Cherry On Tech (Display-1)</div>
<div class="display-2">Cherry On Tech (Display-2)</div>
<div class="display-2 font-bold">Cherry On Tech (Display-2)</div>
<div class="display-3">Cherry On Tech (Display-3)</div>
<div class="display-3 font-bold">Cherry On Tech (Display-3)</div>
<h1>Cherry On Tech (H1)</h1>
<h2>Cherry On Tech (H2)</h2>
<h3>Cherry On Tech (H3)</h3>
<h4>Cherry On Tech (H4)</h4>
<h5>Cherry On Tech (H5)</h5>
<body>Cherry On Tech (Body)</body>
<div class="caption">Cherry On Tech (Caption)</div>
<label>Cherry On Tech (Label)</label>
210 changes: 0 additions & 210 deletions src/components/Welcome.astro

This file was deleted.

7 changes: 2 additions & 5 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.astro';

// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
import TextExample from '../components/TextExample.astro';
---

<Layout>
<Welcome />
<TextExample/>
</Layout>
Loading