-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
136 additions
and
81 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,40 @@ | ||
const performances: Array<any> = [ | ||
{ | ||
date: "29:05", | ||
performance: [ | ||
{ | ||
time: "19:00", | ||
title: "Rehydrating Sphagnum Moss", | ||
author: "Katja Striedelmeyer", | ||
}, | ||
{ | ||
time: "20:00", | ||
title: "Vampyroteuthis infernalis", | ||
author: "Yimei Zheng", | ||
}, | ||
{ | ||
time: "20:30", | ||
title: "Waves", | ||
author: "Miguel Chaparro x Hsun Hsiang Hsu", | ||
}, | ||
], | ||
}, | ||
{ | ||
date: "30.05", | ||
performance: [ | ||
{ | ||
time: "19:00", | ||
title: "The Spiral of Formicidae", | ||
author: "Milton Raggi", | ||
}, | ||
{ | ||
time: "19:30", | ||
title: "Cellolar Performance: From the Bottom of my CPU", | ||
author: "Ralf Baecker", | ||
}, | ||
{ | ||
time: "20:00", | ||
title: "narrative of matters", | ||
author: "Hsun Hsian Hsu", | ||
}, | ||
{ | ||
time: "20:30", | ||
title: "STRATIS", | ||
author: "Miguel Chaparro x Hsun Hsiang Hsu", | ||
}, | ||
], | ||
}, | ||
]; | ||
import { Text } from "@/interfaces/text"; | ||
import { TextPreview } from "./text-preview"; | ||
import { performances } from "@/app/_components/performances" | ||
|
||
|
||
|
||
export function Performance() { | ||
return ( | ||
<section> | ||
<h2 className="mb-8 text-5xl md:text-7xl leading-tight"> | ||
Performance | ||
</h2> | ||
<div className="grid grid-cols-1 md:grid-cols-2 gap-y-10 md:gap-y-10 mb-32 ml-2 "> | ||
{performances.map((performance: any, index: any) => ( | ||
<div key={index} className="flex flex-col gap-y-4"> | ||
<h3 className="mt-10 text-2xl md:text-3xl leading-snug"> | ||
{performance.date} | ||
</h3> | ||
<div className="grid grid-cols-1 gap-y-4"> | ||
{performance.performance.map((item: any, index: any) => ( | ||
<div key={index} className="grid grid-cols-1 gap-y-1"> | ||
<h4 className="text-l md:text-l leading-snug"> | ||
{item.time} | ||
</h4> | ||
<h3 className="text-3xl leading-snug"> | ||
{item.title} | ||
</h3> | ||
<p className="text-lg md:text-xl leading-snug"> | ||
{item.author} | ||
<br /> — | ||
</p> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
))} | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
const performances: Array<any> = [ | ||
{ | ||
date: "29.05", | ||
performance: [ | ||
{ | ||
time: "19:00", | ||
title: "Rehydrating Sphagnum Moss", | ||
author: "Katja Striedelmeyer", | ||
}, | ||
{ | ||
time: "20:00", | ||
title: "Vampyroteuthis infernalis", | ||
author: "Yimei Zheng", | ||
}, | ||
{ | ||
time: "20:30", | ||
title: "Waves", | ||
author: "Miguel Chaparro x Hsun Hsiang Hsu", | ||
}, | ||
], | ||
}, | ||
{ | ||
date: "30.05", | ||
performance: [ | ||
{ | ||
time: "19:00", | ||
title: "The Spiral of Formicidae", | ||
author: "Milton Raggi", | ||
}, | ||
{ | ||
time: "19:30", | ||
title: "Cellolar Performance: From the Bottom of my CPU", | ||
author: "Ralf Baecker", | ||
}, | ||
{ | ||
time: "20:00", | ||
title: "narrative of matters", | ||
author: "Hsun Hsian Hsu", | ||
}, | ||
{ | ||
time: "20:30", | ||
title: "STRATIS", | ||
author: "Miguel Chaparro x Hsun Hsiang Hsu", | ||
}, | ||
], | ||
}, | ||
{ | ||
date: "01.06", | ||
performance: [ | ||
{ | ||
time: "14:30, 15:30, 16:30, 17:30, 18:30, 19:00", | ||
title: "Rehydrating Sphagnum Moss", | ||
author: "Katja Striedelmeyer", | ||
}, | ||
], | ||
}, | ||
{ | ||
date: "02.06", | ||
performance: [ | ||
{ | ||
time: "14:30, 15:30, 16:30, 17:30, 18:30, 19:00", | ||
title: "Rehydrating Sphagnum Moss", | ||
author: "Katja Striedelmeyer", | ||
}, | ||
], | ||
}, | ||
]; | ||
|
||
export { performances }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export function SectionSeparator() { | ||
return <hr className="border-neutral-200 mt-28 mb-24" />; | ||
return <hr className="border-neutral-200 mt-10 mb-10 w-[auto] m-auto" />; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
*{ | ||
color:white; | ||
text-shadow: 0 0 0.5em #66B32E; | ||
/* text-shadow: 0 0 0.5em #66B32E; */ | ||
} | ||
|
||
a, a *{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters