-
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.
Merge pull request #274 from jaredh159/og-image
- Loading branch information
Showing
5 changed files
with
29 additions
and
0 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
import React from 'react'; | ||
import { Logo } from '@shared/components'; | ||
import BgImage from '../static/messages-screenshot.png'; | ||
|
||
const GifAppMessagesOgImage: React.FC = () => ( | ||
<section | ||
style={{ | ||
backgroundImage: `url(${BgImage})`, | ||
backgroundPosition: `-50px center`, | ||
backgroundSize: `100%`, | ||
/* textShadow: `0 15px 30px rgba(0,0,0,0.61), 0 5px 15px rgba(0,0,0,0.68)`, */ | ||
}} | ||
className="w-[1200px] h-[627px] relative flex flex-col justify-between items-end p-12" | ||
> | ||
<div className="w-full h-full absolute left-0 top-0 bg-gradient-to-b from-white via-transparent to-white" /> | ||
<div className="relative text-6xl text-right flex flex-col"> | ||
<span className="font-medium">Can't delete</span> | ||
<span className="text-[80px] font-black mt-4">#images app</span> | ||
<span className="mt-8 font-medium">from Messages in</span> | ||
<span className="mt-8 font-bold text-8xl">iOS 17</span> | ||
</div> | ||
<Logo className="relative" iconOnly size={100} /> | ||
</section> | ||
); | ||
|
||
export default GifAppMessagesOgImage; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.