Skip to content

Commit

Permalink
Merge pull request #280 from Anti-Pattern-Inc/develop
Browse files Browse the repository at this point in the history
20231006リリース
  • Loading branch information
ko-shiro-hap authored Oct 6, 2023
2 parents a52e7c3 + 905ff40 commit 8fc2c9b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/career/Philosophy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const philosophyLists: ReadonlyArray<PhilosophyLists> = [
{
title: '行動指針または「礼」 - 学び続ける',
description:
'世の中は変化し続けるものであるし、私たち自身が変化を起こしていくようなものです。その中において、常に自らも変化させていき適応していくことが重要になる。哲学者の千葉雅也氏も言うように「勉強とは、自己破壊」であり、養老孟司氏でいえば「知ることは自分が変わること」なのであり、特に「Work as Play」でいるには重要な指針です。「自ら機会を作り出し、自らを変えよ」とはリクルート創業者である江添氏の言葉でありますが、これらを鑑みるにまずは自らが変わることが求められているのです。',
'世の中は変化し続けるものであるし、私たち自身が変化を起こしていくようなものです。その中において、常に自らも変化させていき適応していくことが重要になる。哲学者の千葉雅也氏も言うように「勉強とは、自己破壊」であり、養老孟司氏でいえば「知ることは自分が変わること」なのであり、特に「Work as Play」でいるには重要な指針です。「自ら機会を作り出し、自らを変えよ」とはリクルート創業者である江副氏の言葉でありますが、これらを鑑みるにまずは自らが変わることが求められているのです。',
},
{
title: '行動指針または「礼」 - 愛すべきプロダクトを作り続ける',
Expand Down
7 changes: 5 additions & 2 deletions src/components/common/ShareButtons.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import XIcon from 'images/x-logo-white.png'
import Image from 'next/image'
import {
FacebookIcon,
FacebookShareButton,
LinkedinIcon,
LinkedinShareButton,
TwitterIcon,
TwitterShareButton,
} from 'react-share'

Expand All @@ -19,7 +20,9 @@ const ShareButtons = ({ type, slug }: Props) => {
<FacebookIcon size={28} round />
</FacebookShareButton>
<TwitterShareButton url={`https://anti-pattern.co.jp/${type}/${slug}`}>
<TwitterIcon size={28} round />
<div className="p-1 w-6 rounded-full bg-black">
<Image src={XIcon} alt="Twitter" />
</div>
</TwitterShareButton>
<LinkedinShareButton url={`https://anti-pattern.co.jp/${type}/${slug}`}>
<LinkedinIcon size={28} round />
Expand Down
12 changes: 9 additions & 3 deletions src/components/layouts/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Square2StackIcon } from '@heroicons/react/24/outline'
import Facebook from 'images/fb-w.png'
import Linkedin from 'images/li-w.png'
import Twitter from 'images/tw-w.png'
import X from 'images/x-logo-white.png'
import Image from 'next/image'
import Link from 'next/link'
import { useRouter } from 'next/router'
Expand All @@ -13,7 +13,7 @@ const images = [
href: 'https://www.facebook.com/people/Anti-Pattern-Inc/100039176570521/',
},
{
src: Twitter,
src: X,
alt: 'Twitter',
href: 'https://twitter.com/antipatterninc',
},
Expand Down Expand Up @@ -48,7 +48,13 @@ const Footer = () => {
return (
<a href={img.href} target="_blank" key={key} rel="noreferrer">
<span>
<Image src={img.src} alt={img.alt} className="w-6 inline" />
<Image
src={img.src}
alt={img.alt}
className={
img.alt == 'Twitter' ? 'w-4 inline' : 'w-6 inline'
}
/>
</span>
<span className="text-white text-xs ml-2">{img.alt}</span>
</a>
Expand Down
Binary file removed src/images/tw-w.png
Binary file not shown.
Binary file added src/images/x-logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit 8fc2c9b

@vercel
Copy link

@vercel vercel bot commented on 8fc2c9b Oct 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.