Skip to content

Commit 4d687b6

Browse files
committed
final
1 parent 503d606 commit 4d687b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/frontend/app/about/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default function AboutPage() {
172172
</h3>
173173
<p className="text-foreground/90 font-serif leading-relaxed">
174174
Currently pursuing BSc. Hons. Computing and Information Systems
175-
at Sabaragamuwa University (2024-2027). Focused on software
175+
at Sabaragamuwa University (2023-2027). Focused on software
176176
engineering principles, system design, and emerging technologies
177177
in computing.
178178
</p>

apps/frontend/app/post/[id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ export default function PostPage() {
189189
{post.coverPhotoUrl &&
190190
post.coverPhotoUrl !==
191191
"https://via.placeholder.com/800x400?text=No+Image" && (
192-
<div className="mb-6 sm:mb-8 rounded-lg overflow-hidden">
192+
<div className="mb-6 sm:mb-8 rounded-lg overflow-hidden aspect-[2/1]">
193193
<OptimizedImage
194194
src={post.coverPhotoUrl}
195195
alt={post.title}
196196
width={800}
197197
height={400}
198-
className="w-full h-auto object-inherit max-h-64 sm:max-h-80 lg:max-h-96 cover-photo"
198+
className="w-full h-full object-cover cover-photo"
199199
/>
200200
</div>
201201
)}

0 commit comments

Comments
 (0)