Skip to content

Commit 5bf9bbe

Browse files
committed
refactor(multi): update Changelog & documentation.html
1 parent 7ce5a39 commit 5bf9bbe

3 files changed

Lines changed: 29 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ All notable changes to this template will be documented in this file
88

99
### Added
1010

11-
- Initial release of Track Changelog Landing Page
12-
- Responsive layout with mobile-first approach
13-
- Hero section with compelling call-to-action
14-
- Changelog section with version timeline
15-
- FAQ section with accordion component
16-
- Version with Dates release notes
17-
- Light and dark mode support
18-
- Built with Next.js, Tailwind CSS, and shadcn/ui components
11+
- Initial release
12+
- Contains following sections
13+
- Header
14+
- Hero Section
15+
- Changelog Timeline
16+
- FAQ
17+
- CTA
18+
- Footer
19+
- Responsive Design
20+
- Dark/Light Mode Toggle
21+
- Smooth Scrolling
22+
- SEO Optimization

documentation.html

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
3+
<head>
4+
<title>Track - Changelog Landing Page</title>
5+
<meta
6+
http-equiv="refresh"
7+
content="0; URL='https://shadcnstudio.com/docs/getting-started/shadcn-studio-template-nextjs'"
8+
/>
9+
</head>
310

4-
<head>
5-
<title>$landing_page_name</title>
6-
<meta http-equiv="refresh"
7-
content="0; URL='https://shadcnstudio.com/docs/getting-started/shadcn-studio-template-nextjs'" />
8-
</head>
9-
10-
<body>
11-
<p>If you do not redirect please visit : <a href="https://shadcnstudio.com/docs/getting-started/shadcn-studio-template-nextjs">https://shadcnstudio.com/docs/getting-started/shadcn-studio-template-nextjs</a></p>
12-
</body>
13-
11+
<body>
12+
<p>
13+
If you do not redirect please visit :
14+
<a href="https://shadcnstudio.com/docs/getting-started/shadcn-studio-template-nextjs"
15+
>https://shadcnstudio.com/docs/getting-started/shadcn-studio-template-nextjs</a
16+
>
17+
</p>
18+
</body>
1419
</html>

src/components/timeline/timeline-items.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const TimelineItem = ({ date, version, children }: TimelineItemProps) => {
2323
</div>
2424
<span className='w-px flex-1 border' />
2525
</div>
26-
<div className='flex flex-1 flex-col gap-4 ps-3 pb-11 md:ps-6 lg:ps-9'>
26+
<div className='flex flex-1 flex-col gap-4 pb-11 pl-3 md:pl-6 lg:pl-9'>
2727
<div className='flex flex-col gap-2 md:hidden'>
2828
<Badge className='flex rounded-sm font-medium'>{version}</Badge>
2929
<div className='font-medium'>{date}</div>

0 commit comments

Comments
 (0)