DEV: Add a skeleton for section landing page & items (#28477)

We are going to start making section landing pages
for admin for each sidebar section. This lays the framework
with routes and simple components that can be further
refined by a designer, but I have taken the base CSS from
AI which Kris made.

The initial section landing items will be used in AI to replace
the placeholders added in this commit b8b3c61451
This commit is contained in:
Martin Brennan
2024-10-02 12:19:38 +10:00
committed by GitHub
parent baeca887d9
commit 8fc34e9323
9 changed files with 207 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# frozen_string_literal: true
class Admin::SectionController < Admin::AdminController
def show
end
end