init
This commit is contained in:
24
src/app/(admin)/(others-pages)/(chart)/bar-chart/page.tsx
Normal file
24
src/app/(admin)/(others-pages)/(chart)/bar-chart/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import BarChartOne from "@/components/charts/bar/BarChartOne";
|
||||
import ComponentCard from "@/components/common/ComponentCard";
|
||||
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Bar Chart | TailAdmin - Next.js Dashboard Template",
|
||||
description:
|
||||
"This is Next.js Bar Chart page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template",
|
||||
};
|
||||
|
||||
export default function page() {
|
||||
return (
|
||||
<div>
|
||||
<PageBreadcrumb pageTitle="Bar Chart" />
|
||||
<div className="space-y-6">
|
||||
<ComponentCard title="Bar Chart 1">
|
||||
<BarChartOne />
|
||||
</ComponentCard>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
23
src/app/(admin)/(others-pages)/(chart)/line-chart/page.tsx
Normal file
23
src/app/(admin)/(others-pages)/(chart)/line-chart/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import LineChartOne from "@/components/charts/line/LineChartOne";
|
||||
import ComponentCard from "@/components/common/ComponentCard";
|
||||
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Line Chart | TailAdmin - Next.js Dashboard Template",
|
||||
description:
|
||||
"This is Next.js Line Chart page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template",
|
||||
};
|
||||
export default function LineChart() {
|
||||
return (
|
||||
<div>
|
||||
<PageBreadcrumb pageTitle="Line Chart" />
|
||||
<div className="space-y-6">
|
||||
<ComponentCard title="Line Chart 1">
|
||||
<LineChartOne />
|
||||
</ComponentCard>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
||||
import CheckboxComponents from "@/components/form/form-elements/CheckboxComponents";
|
||||
import DefaultInputs from "@/components/form/form-elements/DefaultInputs";
|
||||
import DropzoneComponent from "@/components/form/form-elements/DropZone";
|
||||
import FileInputExample from "@/components/form/form-elements/FileInputExample";
|
||||
import InputGroup from "@/components/form/form-elements/InputGroup";
|
||||
import InputStates from "@/components/form/form-elements/InputStates";
|
||||
import RadioButtons from "@/components/form/form-elements/RadioButtons";
|
||||
import SelectInputs from "@/components/form/form-elements/SelectInputs";
|
||||
import TextAreaInput from "@/components/form/form-elements/TextAreaInput";
|
||||
import ToggleSwitch from "@/components/form/form-elements/ToggleSwitch";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Form Elements | TailAdmin - Next.js Dashboard Template",
|
||||
description:
|
||||
"This is Next.js Form Elements page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template",
|
||||
};
|
||||
|
||||
export default function FormElements() {
|
||||
return (
|
||||
<div>
|
||||
<PageBreadcrumb pageTitle="From Elements" />
|
||||
<div className="grid grid-cols-1 gap-6 xl:grid-cols-2">
|
||||
<div className="space-y-6">
|
||||
<DefaultInputs />
|
||||
<SelectInputs />
|
||||
<TextAreaInput />
|
||||
<InputStates />
|
||||
</div>
|
||||
<div className="space-y-6">
|
||||
<InputGroup />
|
||||
<FileInputExample />
|
||||
<CheckboxComponents />
|
||||
<RadioButtons />
|
||||
<ToggleSwitch />
|
||||
<DropzoneComponent />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
import ComponentCard from "@/components/common/ComponentCard";
|
||||
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
||||
import BasicTableOne from "@/components/tables/BasicTableOne";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Basic Table | TailAdmin - Next.js Dashboard Template",
|
||||
description:
|
||||
"This is Next.js Basic Table page for TailAdmin Tailwind CSS Admin Dashboard Template",
|
||||
// other metadata
|
||||
};
|
||||
|
||||
export default function BasicTables() {
|
||||
return (
|
||||
<div>
|
||||
<PageBreadcrumb pageTitle="Basic Table" />
|
||||
<div className="space-y-6">
|
||||
<ComponentCard title="Basic Table 1">
|
||||
<BasicTableOne />
|
||||
</ComponentCard>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/app/(admin)/(others-pages)/blank/page.tsx
Normal file
27
src/app/(admin)/(others-pages)/blank/page.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Blank Page | TailAdmin - Next.js Dashboard Template",
|
||||
description: "This is Next.js Blank Page TailAdmin Dashboard Template",
|
||||
};
|
||||
|
||||
export default function BlankPage() {
|
||||
return (
|
||||
<div>
|
||||
<PageBreadcrumb pageTitle="Blank Page" />
|
||||
<div className="min-h-screen rounded-2xl border border-gray-200 bg-white px-5 py-7 dark:border-gray-800 dark:bg-white/[0.03] xl:px-10 xl:py-12">
|
||||
<div className="mx-auto w-full max-w-[630px] text-center">
|
||||
<h3 className="mb-4 font-semibold text-gray-800 text-theme-xl dark:text-white/90 sm:text-2xl">
|
||||
Card Title Here
|
||||
</h3>
|
||||
<p className="text-sm text-gray-500 dark:text-gray-400 sm:text-base">
|
||||
Start putting content on grids or panels, you can also use different
|
||||
combinations of grids.Please check out the dashboard and other pages
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
19
src/app/(admin)/(others-pages)/calendar/page.tsx
Normal file
19
src/app/(admin)/(others-pages)/calendar/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import Calendar from "@/components/calendar/Calendar";
|
||||
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Calender | TailAdmin - Next.js Dashboard Template",
|
||||
description:
|
||||
"This is Next.js Calender page for TailAdmin Tailwind CSS Admin Dashboard Template",
|
||||
// other metadata
|
||||
};
|
||||
export default function page() {
|
||||
return (
|
||||
<div>
|
||||
<PageBreadcrumb pageTitle="Calendar" />
|
||||
<Calendar />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/app/(admin)/(others-pages)/profile/page.tsx
Normal file
28
src/app/(admin)/(others-pages)/profile/page.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import UserAddressCard from "@/components/user-profile/UserAddressCard";
|
||||
import UserInfoCard from "@/components/user-profile/UserInfoCard";
|
||||
import UserMetaCard from "@/components/user-profile/UserMetaCard";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Next.js Profile | TailAdmin - Next.js Dashboard Template",
|
||||
description:
|
||||
"This is Next.js Profile page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template",
|
||||
};
|
||||
|
||||
export default function Profile() {
|
||||
return (
|
||||
<div>
|
||||
<div className="rounded-2xl border border-gray-200 bg-white p-5 dark:border-gray-800 dark:bg-white/[0.03] lg:p-6">
|
||||
<h3 className="mb-5 text-lg font-semibold text-gray-800 dark:text-white/90 lg:mb-7">
|
||||
Profile
|
||||
</h3>
|
||||
<div className="space-y-6">
|
||||
<UserMetaCard />
|
||||
<UserInfoCard />
|
||||
<UserAddressCard />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user