diff --git a/src/components/BlogItem.astro b/src/components/BlogItem.astro index 0f49f9c..1dd8999 100644 --- a/src/components/BlogItem.astro +++ b/src/components/BlogItem.astro @@ -41,15 +41,3 @@ const { title, description, date, href, header } = Astro.props; - - diff --git a/src/components/Project.astro b/src/components/Project.astro new file mode 100644 index 0000000..c39a6bf --- /dev/null +++ b/src/components/Project.astro @@ -0,0 +1,25 @@ +--- +import TerminalBorder from "../components/TerminalBorder.astro"; +import Link from "../components/Link.astro"; + +interface Props { + title: string; + description: string; + href: string; +} + +const { title, description, href } = Astro.props; +--- + +
+ + +

{title}

+

{description}

+ +
+
+ + cd ~/projects/{title} + +
diff --git a/src/pages/projects.astro b/src/pages/projects.astro new file mode 100644 index 0000000..ece3a80 --- /dev/null +++ b/src/pages/projects.astro @@ -0,0 +1,52 @@ +--- +import Terminal from "../layouts/Terminal.astro"; +import Project from "../components/Project.astro"; +--- + + +
+
+ + A bunch of text + A bunch of text + A bunch of text + A bunch of text + A bunch of text + + + A bunch of text + +
+
+ + The fastest way to navigate to your most used files, with the least amount of keystrokes! + + + A bunch of text + + + A bunch of text + +
+
+
diff --git a/src/styles/terminal.css b/src/styles/terminal.css index 3d8e51b..92d4585 100644 --- a/src/styles/terminal.css +++ b/src/styles/terminal.css @@ -1,15 +1,5 @@ @import url("../styles/fonts/JetBrainsMono.css"); -/* :root { */ -/* --primary: #ffbf00; */ -/* --secondary: #9b7eca; */ -/* --accent: #7ed4fb; */ -/* --extra: #8fcc75; */ -/* --text: #ffffff; */ -/* --alt: #999999; */ -/* --background: #000000; */ -/* } */ - :root { --primary: #54d7a9; --secondary: #9b7eca;