Add folder structure
This commit is contained in:
5
src/app/portfolio/categories/[id]/page.tsx
Normal file
5
src/app/portfolio/categories/[id]/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioCategoriesEditPage() {
|
||||
return (
|
||||
<div>PortfolioCategoriesEditPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/categories/new/page.tsx
Normal file
5
src/app/portfolio/categories/new/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioCategoriesNewPage() {
|
||||
return (
|
||||
<div>PortfolioCategoriesNewPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/categories/page.tsx
Normal file
5
src/app/portfolio/categories/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioCategoriesPage() {
|
||||
return (
|
||||
<div>PortfolioCategoriesPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/images/[id]/page.tsx
Normal file
5
src/app/portfolio/images/[id]/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioImagesEditPage() {
|
||||
return (
|
||||
<div>PortfolioImagesEditPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/images/new/page.tsx
Normal file
5
src/app/portfolio/images/new/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioImagesNewPage() {
|
||||
return (
|
||||
<div>PortfolioImagesNewPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/images/page.tsx
Normal file
5
src/app/portfolio/images/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioImagesPage() {
|
||||
return (
|
||||
<div>PortfolioImagesPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/tags/[id]/page.tsx
Normal file
5
src/app/portfolio/tags/[id]/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioTagsEditPage() {
|
||||
return (
|
||||
<div>PortfolioTagsEditPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/tags/new/page.tsx
Normal file
5
src/app/portfolio/tags/new/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioTagsNewPage() {
|
||||
return (
|
||||
<div>PortfolioTagsNewPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/tags/page.tsx
Normal file
5
src/app/portfolio/tags/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioTagsPage() {
|
||||
return (
|
||||
<div>PortfolioTagsPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/types/[id]/page.tsx
Normal file
5
src/app/portfolio/types/[id]/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioTypesEditPage() {
|
||||
return (
|
||||
<div>PortfolioTypesEditPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/types/new/page.tsx
Normal file
5
src/app/portfolio/types/new/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioTypesNewPage() {
|
||||
return (
|
||||
<div>PortfolioTypesNewPage</div>
|
||||
);
|
||||
}
|
5
src/app/portfolio/types/page.tsx
Normal file
5
src/app/portfolio/types/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export default function PortfolioTypesPage() {
|
||||
return (
|
||||
<div>PortfolioTypesPage</div>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user