Skip to content

Commit 8e603e7

Browse files
authored
Add new illustration for Bologna (#112)
1 parent 451d783 commit 8e603e7

File tree

2 files changed

+927
-0
lines changed

2 files changed

+927
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import React from "react";
2+
import { HeroIllustrationBologna } from "./hero-illustration-bologna";
3+
4+
export default {
5+
title: "Hero Illustration Bologna",
6+
};
7+
8+
export const Day = () => {
9+
return (
10+
<div className="h-screen w-screen">
11+
<HeroIllustrationBologna cycle="day" />
12+
</div>
13+
);
14+
};
15+
16+
export const Night = () => {
17+
return (
18+
<div className="h-screen w-screen">
19+
<HeroIllustrationBologna cycle="night" />
20+
</div>
21+
);
22+
};

0 commit comments

Comments
 (0)