Skip to content

Commit

Permalink
set up projects page
Browse files Browse the repository at this point in the history
  • Loading branch information
ansharora28 committed Jan 27, 2024
1 parent ce237bf commit 6d82b1b
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ MenuIcon,
<MenuItems class="hidden lg:flex lg:items-center">
<ul class="flex flex-col lg:flex-row lg:gap-5">
<li>
<a href="#" class="text-gray-800 hover:text-green-500">Home</a>
<a href="/" class="text-gray-800 hover:text-green-500">Home</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PLwwzJxp9WxvvIlWk6t3Nw6R8CmFlSd932&si=zA5MUA_gPrD_pFsQ" class="text-gray-800 hover:text-green-500">Talks</a>
<a href="/talks" class="text-gray-800 hover:text-green-500">Talks</a>
</li>
<li>
<a href="/projects" class="text-gray-800 hover:text-green-500">Projects</a>
Expand Down
25 changes: 24 additions & 1 deletion src/pages/blog/index.astro
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
<h1>Coming Soon</h1>
---
import Hero from "../../components/Hero.astro";
import Layout from "../../layouts/Layout.astro";
import Footer from "../../components/footer.astro";
import PageSection from "../../layouts/PageSection.astro";
---



<Layout title="Blog">
<Hero />

<PageSection>
<!-- <SectionHeading>More about me :)</SectionHeading> -->
<h1 class="text-black text-base font-semibold md:text-2xl">Coming Soon</h1>
</PageSection>
<PageSection>

</PageSection>


<!-- <WorkLinks/> -->
<!-- <Footer /> -->
</Layout>
25 changes: 24 additions & 1 deletion src/pages/projects.astro
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
<h1>Coming Soon</h1>
---
import Hero from "../components/Hero.astro";
import Layout from "../layouts/Layout.astro";
import Footer from "../components/footer.astro";
import PageSection from "../layouts/PageSection.astro";
---



<Layout title="Projects">
<Hero />

<PageSection>
<!-- <SectionHeading>More about me :)</SectionHeading> -->
<h1 class="text-black text-base font-semibold md:text-2xl">Coming Soon</h1>
</PageSection>
<PageSection>

</PageSection>


<!-- <WorkLinks/> -->
<!-- <Footer /> -->
</Layout>
4 changes: 0 additions & 4 deletions src/pages/talks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ import Hero from "../components/Hero.astro";
import Layout from "../layouts/Layout.astro";
import Footer from "../components/footer.astro";
import PageSection from "../layouts/PageSection.astro";
import SectionHeading from "../components/SectionHeading.astro";
import WhoAmI from "../components/WhoAmI.astro";
import AboutMeSection from "../components/AboutMeSection.astro";
import WorkLinks from "../components/WorkLinks.astro";
---


Expand Down

0 comments on commit 6d82b1b

Please sign in to comment.