File tree Expand file tree Collapse file tree 32 files changed +205
-138
lines changed Expand file tree Collapse file tree 32 files changed +205
-138
lines changed Original file line number Diff line number Diff line change 1
1
import DirectionallyAware from "@/components/animation/directionally-aware";
2
- import Pagination from "@/components/ui/Pagination";
3
2
import Title from "@/components/ui/Title";
4
3
import Wrapper from "@/components/ui/Wrapper";
5
4
6
- import { ROUTES } from "@/configs/routes";
7
-
8
5
export default function Page() {
9
6
return (
10
7
<div>
11
8
<Title title="Directionally Aware" subtitle="" />
12
9
<Wrapper>
13
10
<DirectionallyAware />
14
11
</Wrapper>
15
- <Pagination
16
- prev={ROUTES.animationUrl("scroll-based")}
17
- next={ROUTES.animationUrl("")}
18
- />
19
12
</div>
20
13
);
21
14
}
Original file line number Diff line number Diff line change 1
1
import ScrollBased from "@/components/animation/scroll-based";
2
- import Pagination from "@/components/ui/Pagination";
3
2
import Title from "@/components/ui/Title";
4
3
import Wrapper from "@/components/ui/Wrapper";
5
4
6
- import { ROUTES } from "@/configs/routes";
7
-
8
5
export default function Page() {
9
6
return (
10
7
<div>
11
8
<Title title="Scroll Based" subtitle="image animation" />
12
9
<Wrapper className="!h-dvh flex justify-center items-center">
13
10
<ScrollBased />
14
11
</Wrapper>
15
- <Pagination
16
- prev={ROUTES.animationUrl("scroll-reveal")}
17
- next={ROUTES.animationUrl("directionally-aware")}
18
- />
19
12
</div>
20
13
);
21
14
}
Original file line number Diff line number Diff line change 1
1
import ScrollReveal from "@/components/animation/scroll-reveal";
2
- import Pagination from "@/components/ui/Pagination";
3
2
import Title from "@/components/ui/Title";
4
3
import Wrapper from "@/components/ui/Wrapper";
5
4
6
- import { ROUTES } from "@/configs/routes";
7
-
8
5
export default function Page() {
9
6
return (
10
7
<div>
11
8
<Title title="Scroll Reveal" subtitle="normal" />
12
9
<Wrapper className="!h-[120vh] pt-80 flex justify-center items-center">
13
10
<ScrollReveal />
14
11
</Wrapper>
15
- <Pagination
16
- prev={ROUTES.componentUrl("canban")}
17
- next={ROUTES.animationUrl("/scroll-reveal")}
18
- />
19
12
</div>
20
13
);
21
14
}
Original file line number Diff line number Diff line change 1
1
import Acordion from "@/components/component/acordion";
2
- import Pagination from "@/components/ui/Pagination ";
2
+ import AcordionImage from "@/components/component/acordion/image ";
3
3
import Title from "@/components/ui/Title";
4
4
import Wrapper from "@/components/ui/Wrapper";
5
5
6
- import { ROUTES } from "@/configs/routes";
7
-
8
6
export default function Page() {
9
7
return (
10
8
<div>
11
9
<Title title="Acordion" subtitle="Acordion Variant" />
12
10
<Wrapper>
13
11
<Acordion />
14
12
</Wrapper>
15
- <Pagination prev={ROUTES.formUrl("otp")} next={ROUTES.componentUrl("button")} />
13
+ <Title subtitle="Acordion Image" />
14
+ <Wrapper>
15
+ <AcordionImage />
16
+ </Wrapper>
16
17
</div>
17
18
);
18
19
}
Original file line number Diff line number Diff line change 1
1
import ButtonSizes from "@/components/component/button/button-sizes";
2
2
import ButtonVariant from "@/components/component/button/button-variant";
3
- import Pagination from "@/components/ui/Pagination";
4
3
import Title from "@/components/ui/Title";
5
4
import Wrapper from "@/components/ui/Wrapper";
6
5
7
- import { ROUTES } from "@/configs/routes";
8
-
9
6
export default function Page() {
10
7
return (
11
8
<div>
@@ -17,7 +14,6 @@ export default function Page() {
17
14
<Wrapper>
18
15
<ButtonVariant />
19
16
</Wrapper>
20
- <Pagination prev={ROUTES.componentUrl("button")} next={ROUTES.componentUrl("table")} />
21
17
</div>
22
18
);
23
19
}
Original file line number Diff line number Diff line change 1
1
"use client";
2
2
3
3
import Canban from "@/components/component/canban";
4
- import Pagination from "@/components/ui/Pagination";
5
4
import Title from "@/components/ui/Title";
6
5
import Wrapper from "@/components/ui/Wrapper";
7
6
8
- import { ROUTES } from "@/configs/routes";
9
7
import { useScrollX } from "@/hooks";
10
8
11
9
export default function Page() {
@@ -27,10 +25,6 @@ export default function Page() {
27
25
<Canban initialData={initialData} />
28
26
</div>
29
27
</Wrapper>
30
- <Pagination
31
- prev={ROUTES.componentUrl("gallery")}
32
- next={ROUTES.animationUrl("/scroll-reveal")}
33
- />
34
28
</div>
35
29
);
36
30
}
Original file line number Diff line number Diff line change 1
1
import Gallery from "@/components/component/gallery";
2
- import Pagination from "@/components/ui/Pagination";
3
2
import Title from "@/components/ui/Title";
4
3
import Wrapper from "@/components/ui/Wrapper";
5
4
6
- import { ROUTES } from "@/configs/routes";
7
-
8
5
export default function Page() {
9
6
return (
10
7
<div>
11
8
<Title title="Gallery" subtitle="gallery" />
12
9
<Wrapper>
13
10
<Gallery />
14
11
</Wrapper>
15
- <Pagination prev={ROUTES.componentUrl("paralax")} next={ROUTES.componentUrl("/canban")} />
16
12
</div>
17
13
);
18
14
}
Original file line number Diff line number Diff line change 1
1
import Modal from "@/components/component/modal/modal";
2
- import Pagination from "@/components/ui/Pagination";
3
2
import Title from "@/components/ui/Title";
4
3
import Wrapper from "@/components/ui/Wrapper";
5
4
6
- import { ROUTES } from "@/configs/routes";
7
-
8
5
export default function Page() {
9
6
return (
10
7
<div>
11
8
<Title title="Modal" subtitle="Modal" />
12
9
<Wrapper>
13
10
<Modal />
14
11
</Wrapper>
15
- <Pagination prev={ROUTES.componentUrl("table")} next={ROUTES.componentUrl("")} />
16
12
</div>
17
13
);
18
14
}
Original file line number Diff line number Diff line change 1
1
import Paralax from "@/components/component/paralax";
2
2
import ParalaxWithContent from "@/components/component/paralax/with-content";
3
- import Pagination from "@/components/ui/Pagination";
4
3
import Title from "@/components/ui/Title";
5
4
import Wrapper from "@/components/ui/Wrapper";
6
5
7
- import { ROUTES } from "@/configs/routes";
8
-
9
6
export default function Page() {
10
7
return (
11
8
<div>
@@ -17,7 +14,6 @@ export default function Page() {
17
14
<Wrapper>
18
15
<ParalaxWithContent />
19
16
</Wrapper>
20
- <Pagination prev={ROUTES.componentUrl("modal")} next={ROUTES.componentUrl("/gallery")} />
21
17
</div>
22
18
);
23
19
}
Original file line number Diff line number Diff line change 1
1
import Table from "@/components/component/table";
2
- import Pagination from "@/components/ui/Pagination";
3
2
import Title from "@/components/ui/Title";
4
3
import Wrapper from "@/components/ui/Wrapper";
5
4
6
- import { ROUTES } from "@/configs/routes";
7
-
8
5
export default function Page() {
9
6
return (
10
7
<div>
11
8
<Title title="Table" subtitle="table" />
12
9
<Wrapper>
13
10
<Table />
14
11
</Wrapper>
15
- <Pagination
16
- prev={ROUTES.componentUrl("button")}
17
- next={ROUTES.componentUrl("modal")}
18
- />
19
12
</div>
20
13
);
21
14
}
Original file line number Diff line number Diff line change 1
1
import Checkbox from "@/components/form/checkbox";
2
2
import CheckboxVariant from "@/components/form/checkbox/variant";
3
- import Pagination from "@/components/ui/Pagination";
4
3
import Title from "@/components/ui/Title";
5
4
import Wrapper from "@/components/ui/Wrapper";
6
5
7
- import { ROUTES } from "@/configs/routes";
8
-
9
6
export default function Page() {
10
7
return (
11
8
<div>
@@ -17,10 +14,6 @@ export default function Page() {
17
14
<Wrapper>
18
15
<CheckboxVariant />
19
16
</Wrapper>
20
- <Pagination
21
- prev={ROUTES.formUrl("dropdown")}
22
- next={ROUTES.formUrl("otp")}
23
- />
24
17
</div>
25
18
);
26
19
}
Original file line number Diff line number Diff line change 1
1
import Dropdown from "@/components/form/dropdown";
2
2
import DropdownVariant from "@/components/form/dropdown/dropdown-variant";
3
3
import DropdownCheckbox from "@/components/form/dropdown/dropdown-checkbox";
4
- import Pagination from "@/components/ui/Pagination";
5
4
import Title from "@/components/ui/Title";
6
5
import Wrapper from "@/components/ui/Wrapper";
7
6
8
- import { ROUTES } from "@/configs/routes";
9
-
10
7
export default function Page() {
11
8
return (
12
9
<div>
@@ -22,10 +19,6 @@ export default function Page() {
22
19
<Wrapper>
23
20
<DropdownCheckbox />
24
21
</Wrapper>
25
- <Pagination
26
- prev={ROUTES.formUrl("textarea")}
27
- next={ROUTES.formUrl("checkbox")}
28
- />
29
22
</div>
30
23
);
31
24
}
Original file line number Diff line number Diff line change 1
1
import Input from "@/components/form/input-dynamic";
2
2
import Title from "@/components/ui/Title";
3
3
import Wrapper from "@/components/ui/Wrapper";
4
- import Pagination from "@/components/ui/Pagination";
5
-
6
- import { ROUTES } from "@/configs/routes";
7
4
8
5
export default function Page() {
9
6
return (
@@ -12,10 +9,6 @@ export default function Page() {
12
9
<Wrapper>
13
10
<Input />
14
11
</Wrapper>
15
- <Pagination
16
- prev={ROUTES.formUrl("input-tag")}
17
- next={ROUTES.formUrl("input-file")}
18
- />
19
12
</div>
20
13
);
21
14
}
Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ import UploadImage from "@/components/form/input-file/image";
4
4
import UploadImageMultiple from "@/components/form/input-file/image-multiple";
5
5
import Title from "@/components/ui/Title";
6
6
import Wrapper from "@/components/ui/Wrapper";
7
- import Pagination from "@/components/ui/Pagination";
8
-
9
- import { ROUTES } from "@/configs/routes";
10
7
11
8
export default function Page() {
12
9
return (
@@ -27,10 +24,6 @@ export default function Page() {
27
24
<Wrapper>
28
25
<UploadImageMultiple />
29
26
</Wrapper>
30
- <Pagination
31
- prev={ROUTES.formUrl("input-dynamic")}
32
- next={ROUTES.formUrl("textarea")}
33
- />
34
27
</div>
35
28
);
36
29
}
Original file line number Diff line number Diff line change 1
1
import Input from "@/components/form/input-suggest";
2
2
import Title from "@/components/ui/Title";
3
3
import Wrapper from "@/components/ui/Wrapper";
4
- import Pagination from "@/components/ui/Pagination";
5
-
6
- import { ROUTES } from "@/configs/routes";
7
4
8
5
export default function Page() {
9
6
return (
@@ -12,10 +9,6 @@ export default function Page() {
12
9
<Wrapper>
13
10
<Input />
14
11
</Wrapper>
15
- <Pagination
16
- prev={ROUTES.formUrl("input")}
17
- next={ROUTES.formUrl("input-dynamic")}
18
- />
19
12
</div>
20
13
);
21
14
}
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ import InputTag from "@/components/form/input-tag";
2
2
import InputTagSearch from "@/components/form/input-tag/tag-search";
3
3
import Title from "@/components/ui/Title";
4
4
import Wrapper from "@/components/ui/Wrapper";
5
- import Pagination from "@/components/ui/Pagination";
6
-
7
- import { ROUTES } from "@/configs/routes";
8
5
9
6
export default function Page() {
10
7
return (
@@ -17,10 +14,6 @@ export default function Page() {
17
14
<Wrapper>
18
15
<InputTagSearch />
19
16
</Wrapper>
20
- <Pagination
21
- prev={ROUTES.formUrl("input-suggest")}
22
- next={ROUTES.formUrl("input-dynamic")}
23
- />
24
17
</div>
25
18
);
26
19
}
Original file line number Diff line number Diff line change 1
1
import Input from "@/components/form/input";
2
2
import InputVariant from "@/components/form/input/input-variant";
3
- import Pagination from "@/components/ui/Pagination";
4
3
import Title from "@/components/ui/Title";
5
4
import Wrapper from "@/components/ui/Wrapper";
6
5
7
- import { ROUTES } from "@/configs/routes";
8
-
9
6
export default function Page() {
10
7
return (
11
8
<div>
@@ -17,10 +14,6 @@ export default function Page() {
17
14
<Wrapper>
18
15
<InputVariant />
19
16
</Wrapper>
20
- <Pagination
21
- prev={ROUTES.formUrl("/")}
22
- next={ROUTES.formUrl("input-suggest")}
23
- />
24
17
</div>
25
18
);
26
19
}
Original file line number Diff line number Diff line change 1
1
import OTP from "@/components/form/otp";
2
2
import OtpDivide from "@/components/form/otp/OtpDivide";
3
- import Pagination from "@/components/ui/Pagination";
3
+
4
4
import Title from "@/components/ui/Title";
5
5
import Wrapper from "@/components/ui/Wrapper";
6
6
7
- import { ROUTES } from "@/configs/routes";
8
-
9
7
export default function Page() {
10
8
return (
11
9
<div>
@@ -18,10 +16,6 @@ export default function Page() {
18
16
<OtpDivide />
19
17
</Wrapper>
20
18
<p className="description">You can also inrease or decrease length</p>
21
- <Pagination
22
- prev={ROUTES.formUrl("checkbox")}
23
- next={ROUTES.componentUrl("acordion")}
24
- />
25
19
</div>
26
20
);
27
21
}
You can’t perform that action at this time.
0 commit comments