-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,349 additions
and
3,971 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
const path = require("node:path") | ||
const tailwindcss = require("tailwindcss") | ||
const autoprefixer = require("autoprefixer") | ||
const postcssImport = require("postcss-import") | ||
const postcssNesting = require("tailwindcss/nesting") | ||
|
||
/** @type {import('postcss-load-config').Config} */ | ||
module.exports = { | ||
plugins: { | ||
"postcss-import": {}, | ||
"tailwindcss/nesting": {}, | ||
tailwindcss: {}, | ||
autoprefixer: {} | ||
} | ||
plugins: [ | ||
postcssImport, | ||
postcssNesting, | ||
tailwindcss(path.resolve(__dirname, "./tailwind.config.ts")), | ||
autoprefixer | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ const menuItems = [ | |
}, | ||
{ | ||
url: "https://x.com/union_build", | ||
name: "𝕏" | ||
name: "X.com" | ||
} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
--- | ||
import Spline from "#/components/Spline.svelte" | ||
import Card from "#/components/Card.astro" | ||
const { name, description, link, model } = Astro.props | ||
const { name, description, link } = Astro.props | ||
--- | ||
<Card class="flex flex-col text-left"> | ||
<!-- <div class="-mt-16 -mb-4"> --> | ||
<!-- <Spline {model} client:only/> --> | ||
<!-- </div> --> | ||
<div class="flex flex-col flex-1 overflow-hidden"> | ||
<h3 class="mb-1 text-3xl px-4">{name}</h3> | ||
<p class="text-gray-400 flex-1 px-4">{description}</p> | ||
<a | ||
class="block bg-neutral-900 p-4 block mt-2 text-white font-semibold" | ||
href={link}>Read More {'->'}</a | ||
> | ||
class="block bg-neutral-900 p-4 mt-2 text-white font-semibold" | ||
href={link}>Read More {'->'} | ||
</a> | ||
</div> | ||
</Card> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
import BaseLayout from "#/layouts/BaseLayout.astro" | ||
import LogoVariable from "#/components/LogoVariable.svelte" | ||
import LogoVariableComponent from "#/components/LogoVariable.svelte" | ||
--- | ||
|
||
<BaseLayout loadFonts={false}> | ||
<LogoVariable client:load /> | ||
<LogoVariableComponent client:load /> | ||
</BaseLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters