Skip to content

Commit

Permalink
Merge pull request #9 from kuzudb/more-fixes
Browse files Browse the repository at this point in the history
More fixes
  • Loading branch information
prrao87 authored Feb 28, 2024
2 parents d94e996 + 5df9dbe commit c71c58d
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 31 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store
# VS code
.vscode
4 changes: 0 additions & 4 deletions .vscode/extensions.json

This file was deleted.

11 changes: 0 additions & 11 deletions .vscode/launch.json

This file was deleted.

Binary file modified public/default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export interface NavigationLink {
const { main }: { main: NavigationLink[] } = menu;
---

<header class="bg-zinc-50 dark:bg-zinc-900">
<div class="mx-auto max-w-screen-lg px-4 py-8 sm:px-6 sm:py-12 lg:px-8">
<header class="bg-zinc-50 dark:bg-zinc-900 sticky top-0 z-50">
<div class="mx-auto max-w-screen-lg px-4 py-4 sm:px-4 sm:py-4 lg:px-4">
<div class="flex items-start justify-between gap-2 sm:gap-4 md:items-center">
<div class="block dark:hidden">
<a href="/" class="logo flex items-center" aria-current="page">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "What every competent GDBMS should do (a.k.a. the goals and vision of Kùzu)"
description: "What every competent GDBMS should do (a.k.a. the goals and vision of Kùzu)"
pubDate: "Jan 12 2023"
heroImage: "/default.png"
heroImage: "/src/content/post/2023-01-12-what-every-gdbms-should-do/bachmann.png"
categories: ["concepts"]
authors: ["semih"]
tags: ["vision"]
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/content/post/2023-01-20-factorization/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Factorization and great ideas from database theory"
description: "Factorization and great ideas from database theory"
pubDate: "Jan 20 2023"
heroImage: "/default.png"
heroImage: "/src/content/post/2023-01-20-factorization/factorization-banner.png"
categories: ["concepts"]
authors: ["semih"]
tags: ["internals", "factorization"]
Expand Down
2 changes: 1 addition & 1 deletion src/content/post/2023-02-22-wcoj/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Why (Graph) DBMSs Need New Join Algorithms"
description: "Why (Graph) DBMSs Need New Join Algorithms: The Story of Worst-case Optimal Join Algorithms"
pubDate: "Feb 22 2023"
heroImage: "/default.png"
heroImage: "/src/content/post/2023-02-22-wcoj/wcoj-4-clique.png"
categories: ["concepts"]
authors: ["semih"]
tags: ["internals", "wcoj", "joins"]
Expand Down
22 changes: 12 additions & 10 deletions src/layouts/Posts.astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,18 @@ type PostType = {
<div class="rounded-lg block overflow-hidden mb-4">
{post.data.heroImage && (
<a href={`/post/${post.slug}/`}>
<figure class="max-w-48 mx-24 mx-auto flex">
<Image
src={post.data.heroImage}
alt={post.data.title}
width={960}
height={480}
decoding="async"
loading="lazy"
/>
</figure>
<center>
<figure class="max-w-96 h-36 mx-2">
<Image
src={post.data.heroImage}
alt={post.data.title}
width={960}
height={480}
decoding="async"
loading="lazy"
/>
</figure>
</center>
</a>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
@apply hover:text-orange-600;
}
img {
@apply rounded-md w-full md:w-full lg:w-3/4 hover:w-full;
@apply rounded-md w-full md:w-full lg:w-3/4;
}
th {
@apply bg-zinc-100 bg-zinc-200 dark:bg-zinc-300;
Expand Down

0 comments on commit c71c58d

Please sign in to comment.