Skip to content

Commit

Permalink
Merge pull request #50 from cmpadden/noise
Browse files Browse the repository at this point in the history
share noise svg across sections
  • Loading branch information
cmpadden authored Apr 29, 2024
2 parents f13f6ca + 6003d25 commit 22165bc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions components/section/AboutMe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ onMounted(() => {
</span>
helping lead the way of modern data orchestration at
<a
class="border-b-2 border-blue-200"
class="border-b-2 border-red-200"
target="_blank"
rel="noopener noreferrer"
href="https://dagster.io/"
Expand All @@ -75,14 +75,14 @@ onMounted(() => {
<div>
Previously, I worked at
<a
class="border-b-2 border-blue-200"
class="border-b-2 border-red-200"
target="_blank"
rel="noopener noreferrer"
href="https://www.gemini.com/"
>Gemini</a
> building the future of finance, and before that at Georgetown University's
<a
class="border-b-2 border-blue-200"
class="border-b-2 border-red-200"
target="_blank"
rel="noopener noreferrer"
href="https://mccourt.georgetown.edu/research/the-massive-data-institute/"
Expand Down
2 changes: 1 addition & 1 deletion components/section/BlogPosts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const props = defineProps({
</script>

<template>
<section class="bg-emerald-950 bg-[url('/images/noise.svg')] text-white">
<section>
<div class="container mx-auto space-y-4">
<h1 class="text-3xl font-bold leading-tight text-white">
Blog Posts
Expand Down
3 changes: 1 addition & 2 deletions components/section/Interests.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<template>
<!-- <section class="bg-emerald-900 bg-[url('/images/topography.svg')] text-white"> -->
<section class="bg-emerald-950 bg-[url('/images/noise.svg')] text-white">
<section class="text-white">
<div class="bg-gradient-to-b from-background to-transparent">
<div
class="container mx-auto grid grid-cols-1 space-y-6 py-8 md:grid-cols-3 md:space-x-6 md:space-y-0"
Expand Down
4 changes: 2 additions & 2 deletions components/section/Playground.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const filtered_links = computed(() => {
</script>

<template>
<section class="bg-emerald-950 bg-[url('/images/noise.svg')] text-white">
<section class="text-white">
<div class="container mx-auto space-y-4 py-8 text-white">
<h1 class="text-3xl font-bold leading-tight text-white">
{{ title }}
Expand All @@ -104,7 +104,7 @@ const filtered_links = computed(() => {
<div
class="h-full rounded-xl bg-black bg-opacity-70 drop-shadow-lg hover:ring-1 hover:ring-white"
>
<div class="p-4">
<div class="min-h-28 px-4 pt-4">
<h3 class="pb-2 text-xl font-bold">{{ link.title }}</h3>
<div class="text-base font-light line-clamp-2" v-html="link.description"></div>
</div>
Expand Down
8 changes: 5 additions & 3 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ const data = await queryContent()
<template>
<div>
<SectionAboutMe />
<SectionInterests />
<SectionBlogPosts :articles="data" :show_dates="true" />
<SectionPlayground :limit="6" showImages linkToPlayground />
<div class="bg-emerald-950 bg-[url('/images/noise.svg')]">
<SectionInterests />
<SectionBlogPosts :articles="data" :show_dates="true" />
<SectionPlayground :limit="6" showImages linkToPlayground />
</div>
</div>
</template>

0 comments on commit 22165bc

Please sign in to comment.