-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Feature/#43/fix detail
- Loading branch information
Showing
82 changed files
with
1,392 additions
and
394 deletions.
There are no files selected for viewing
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,7 +1,3 @@ | ||
{ | ||
"cSpell.words": [ | ||
"astro", | ||
"Sato", | ||
"Taiki" | ||
] | ||
} | ||
"cSpell.words": ["astro", "Sato", "Taiki"] | ||
} |
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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
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,55 @@ | ||
--- | ||
import type { Work } from '@/types/Work'; | ||
interface Props { | ||
work?: Work; | ||
} | ||
const { work } = Astro.props; | ||
--- | ||
|
||
<section | ||
class="ts-horizontal-scroll-item md:mr-[41rem] | ||
flex flex-col justify-end items-start md:pb-[7.5rem] | ||
mt-28 md:mt-0 px-5 md:px-0" | ||
> | ||
<h1 class="md:w-1/2 flex flex-col gap-4"> | ||
<span class="text-[2rem] md:text-5xl font-semibold">{work?.title}</span> | ||
{ | ||
work?.categories.map(category => ( | ||
<span class="font-serif-en md:text-lg">{category}</span> | ||
)) | ||
} | ||
</h1> | ||
|
||
<div | ||
class="md:w-1/2 mt-16 md:mt-24 flex flex-col md:flex-row gap-4 md:gap-20" | ||
> | ||
<p class="flex flex-col gap-2"> | ||
<span class="text-gray">ROLE</span> | ||
<span> | ||
{ | ||
work?.tags.map((tag, i) => ( | ||
<span class="-ml-1"> | ||
{i !== 0 && i < work.tags.length && <span>, </span>} | ||
{tag} | ||
</span> | ||
)) | ||
} | ||
</span> | ||
</p> | ||
|
||
<p class="flex flex-col gap-2"> | ||
<span class="text-gray">YEAR</span> | ||
<span>{work?.year}</span> | ||
</p> | ||
</div> | ||
</section> | ||
|
||
<picture class="ts-horizontal-scroll-item mt-9 md:mt-0 | ||
block"> | ||
<source | ||
srcset={work?.mv} | ||
media="(min-width: 768px)" | ||
class="ts-image-white-in md:h-full" | ||
/> | ||
<img src={work?.mvSp} alt="" class="ts-image-white-in md:h-full" /> | ||
</picture> |
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,49 @@ | ||
--- | ||
import type { Work } from '@/types/Work'; | ||
interface Props { | ||
work: Work; | ||
} | ||
const { work } = Astro.props; | ||
--- | ||
|
||
<section | ||
class="ts-horizontal-scroll-item flex justify-end items-end md:pl-[34rem] md:pr-20 box-content" | ||
> | ||
<div class="pt-24 md:py-[8.125rem] px-5 md:px-0"> | ||
<p class="md:text-lg font-serif-en">(NEXT PROJECT)</p> | ||
<h2 class="text-[2rem] md:text-[2.625rem] font-medium"> | ||
{work.title} | ||
</h2> | ||
</div> | ||
</section> | ||
|
||
<picture class="ts-horizontal-scroll-item block mt-9 md:mt-0"> | ||
<a | ||
href={`/works/${work.slug}/`} | ||
aria-label={`${work.title}を見る`} | ||
class="ts-crossing-link block h-full relative" | ||
> | ||
<img | ||
src={work.image} | ||
aria-label={`${work.title}を見る`} | ||
class="ts-image-white-in md:h-full" | ||
/> | ||
|
||
<span | ||
class="bg-mine-shaft flex md:hidden justify-center items-center absolute bottom-[20px] right-5 rounded-full w-[40px] h-[40px]" | ||
> | ||
<svg | ||
width="14" | ||
height="10" | ||
viewBox="0 0 14 10" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M6.91412 0.679339C6.91412 0.679339 7.99884 2.63402 8.2563 4.37282L0.731445 4.7742V5.34764L8.24902 5.74902C7.96468 7.46346 6.78603 9.32056 6.78603 9.32056C6.78603 9.32056 10.3661 5.54406 13.6435 5.05602C10.3758 4.56308 6.91412 0.679199 6.91412 0.679199V0.679339Z" | ||
class="fill-taupe-gray"></path> | ||
</svg> | ||
</span> | ||
</a> | ||
</picture> |
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,10 +1,11 @@ | ||
const filters = [ | ||
'All', | ||
'Art Direction', | ||
'Web Design', | ||
'Graphic Design', | ||
'Logo Design', | ||
'Fashion Design', | ||
'ALL', | ||
'ART DIRECTION', | ||
'WEB DESIGN', | ||
'GRAPHIC DESIGN', | ||
'LOGO DESIGN', | ||
'FASHION DESIGN', | ||
'CODING', | ||
]; | ||
|
||
export default filters; |
Oops, something went wrong.