Skip to content

Commit d007a36

Browse files
committed
feat: support mobile part
1 parent ba027c9 commit d007a36

11 files changed

Lines changed: 154 additions & 3 deletions

File tree

.aider.chat.history.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
# aider chat started at 2025-12-26 11:34:21
3+
4+
> You can skip this check with --no-gitignore

public/svgs/android-download.svg

Lines changed: 9 additions & 0 deletions
Loading

public/svgs/android.svg

Lines changed: 7 additions & 0 deletions
Loading

public/svgs/github-circle.svg

Lines changed: 1 addition & 0 deletions
Loading

public/svgs/ios-download.svg

Lines changed: 37 additions & 0 deletions
Loading

public/svgs/ios.svg

Lines changed: 5 additions & 0 deletions
Loading

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { HeroSection } from "@/components/sections/hero-section";
44
import { IntroSection } from "@/components/sections/intro-section";
5-
import { FinalSection } from "@/components/sections/final-section";
5+
import { FinalSection } from "@/components/sections/final-section/final-section";
66
import { cn } from "@/lib/utils";
77

88
export default function Home() {

src/components/sections/download-part.tsx renamed to src/components/sections/final-section/download-part.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
import { useEffect, useState } from "react";
55
import { ArrowDownToLine } from "lucide-react";
6-
import { Button } from "../ui/button";
6+
import { Button } from "../../ui/button";
77
import { listDownloads } from "@/services/download";
88
import { DownloadResponse } from "@/type/donwload";
9-
import { Skeleton } from "../ui/skeleton";
9+
import { Skeleton } from "../../ui/skeleton";
1010
import {
1111
detectUserPlatform,
1212
getArtifactForPlatform,
@@ -15,6 +15,7 @@ import {
1515
} from "@/lib/utils";
1616
import { cn } from "@/lib/utils";
1717
import { useIsMobile } from "@/hooks/use-mobile";
18+
import { MobilePart } from "./mobile-part";
1819

1920
interface DownloadItem {
2021
label: string;
@@ -317,6 +318,8 @@ export function DownloadPart() {
317318
</div>
318319
))}
319320
</div>
321+
322+
<MobilePart />
320323
</div>
321324
</div>
322325
);
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)