Skip to content

Commit 1fc82ad

Browse files
committed
fix typos, fix light mode ui
1 parent 3556bb8 commit 1fc82ad

4 files changed

Lines changed: 6 additions & 15 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
## <h1 style="align-items: center; align-self: center;">`Pocket Poster Guide`</h1>
1+
## <h1 align="center">`Pocket Poster Guide`</h1>
22

33
An easy enough guide on how to install and use Pocket Poster on iOS 17-26.1.
44

5-
> [!CAUTION]
5+
> [!WARNING]
66
>
77
> Pocket Poster will never work on iOS 26.2+. Also, iOS 16 will never be fully supported due to iOS limitations.
88
99
To run this page locally, simply clone this repository and run:
1010

1111
```bash
12+
#install requirements
1213
npm i
14+
#run dev server
1315
npm run dev
1416
```

app/globals.css

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
@import "tailwindcss";
22

3-
:root {
4-
--background: #ffffff;
5-
--foreground: #171717;
6-
}
7-
83
@theme inline {
94
--color-background: var(--background);
105
--color-foreground: var(--foreground);
116
--font-sans: var(--font-geist-sans);
127
--font-mono: var(--font-geist-mono);
138
}
149

15-
@media (prefers-color-scheme: dark) {
16-
:root {
10+
:root {
1711
--background: #0a0a0a;
1812
--foreground: #ededed;
19-
}
2013
}
2114

2215
body {

app/layout.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ export const metadata: Metadata = {
2727
}
2828
],
2929
},
30-
twitter: {
31-
card: 'summary_large_image',
32-
images: ['/opengraph-image.png'],
33-
},
3430
}
3531

3632
export default function RootLayout({

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function Home() {
4343
<FadeContent blur delay={0.4} duration={0.7} className='bg-[#1c398e]/25 backdrop-blur-[1.8px] w-full p-5 rounded-t-3xl border-[#1c398e]/25 border-4 border-solid'>
4444
<FadeContent blur delay={0.5} duration={0.7} className='pb-5 text-2xl font-bold'>Step 1: Creating a free Apple Developer account</FadeContent>
4545
<FadeContent blur delay={0.5} duration={0.7} className='text-xl'>
46-
<p>You need to create a Apple Developer account. Don't worry, this is completley free. You can sign up by going to <a href="https://developer.apple.com/account/" className='text-sky-300' target='_blank'>developer.apple.com</a> and signing in with your existing Apple account.</p>
46+
<p>You need to create an Apple Developer account. Don't worry, this is completley free. You can sign up by going to <a href="https://developer.apple.com/account/" className='text-sky-300' target='_blank'>developer.apple.com</a> and signing in with your existing Apple account.</p>
4747
</FadeContent>
4848
</FadeContent>
4949
</div>

0 commit comments

Comments
 (0)