diff options
| author | real-zephex <[email protected]> | 2024-04-06 15:38:39 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-06 15:38:39 +0530 |
| commit | 99e977342c2bc4aa3f6b930dfab80a7dc9f5eee3 (patch) | |
| tree | e5ea8e64e27778ce468431138775bf9f6dc3874b /src/app/manga/page.jsx | |
| parent | UI Upgrades for anime section. (diff) | |
| parent | added search functionality (diff) | |
| download | dramalama-99e977342c2bc4aa3f6b930dfab80a7dc9f5eee3.tar.xz dramalama-99e977342c2bc4aa3f6b930dfab80a7dc9f5eee3.zip | |
Merge pull request #2 from real-zephex/kdrama-section-rewrite
The kdrama section underwent a complete rewrite.
Diffstat (limited to 'src/app/manga/page.jsx')
| -rw-r--r-- | src/app/manga/page.jsx | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/src/app/manga/page.jsx b/src/app/manga/page.jsx index 7f1f9cb..e6ad898 100644 --- a/src/app/manga/page.jsx +++ b/src/app/manga/page.jsx @@ -16,20 +16,20 @@ export default async function Manga() { <div className={styles.HorizontalImageContainer}> <Image src="/image.png" - width={480} + width={487} height={260} alt="Haikyu" /> </div> <div className={styles.VerticalImageContainer}> <Image - src="/haikyu1.jpg" + src="/image.webp" width={240} height={360} alt="Haikyu" /> <Image - src="/solo_levelling.png" + src="/solo_poster.png" width={240} height={360} alt="Haikyu" @@ -39,23 +39,22 @@ export default async function Manga() { </div> <div className={styles.SelfPromoContainer}> - <div className={styles.Welcome1}> - <p - style={{ - textAlign: "center", - fontSize: 32, - color: "var(--soft-purple)", - }} - > - Welcome to Dramalama Manga - </p> - <p> - Dive into a world where action jumps off the page and - pictures paint a thousand words. Dramalama Manga is a - site that will immerse you in stunning illustrations and - compel you to lose yourself in thrilling narratives. - </p> - </div> + <p + style={{ + textAlign: "center", + fontSize: 32, + color: "var(--soft-purple)", + fontFamily: "Poppins", + }} + > + Welcome to Dramalama Manga + </p> + <p style={{ marginTop: -10 }}> + Dive into a world where action jumps off the page and + pictures paint a thousand words. Dramalama Manga is a site + that will immerse you in stunning illustrations and compel + you to lose yourself in thrilling narratives. + </p> </div> </div> ); |