Osama Sayegh fed9055818
DEV: Remove admin-revamp and introduce foundations for admin config (#27293)
This commit removes the `/admin-revamp` routes which were introduced as a part of an experiment to revamp the admin pages. We still want to improve the admin/staff experience, but we're going to do them within the existing `/admin` routes instead of introducing a completely new route.

Our initial efforts to improve the Discourse admin experience is this commit which introduces the foundation for a new subroute `/admin/config` which will house various new pages for configuring Discourse. The first new page (or "config area") will be `/admin/config/about` that will house all the settings and controls for configuring the `/about` page of Discourse.

Internal topic: t/128544
2024-06-03 10:18:14 +03:00

16 lines
361 B
Plaintext

import Component from "@glimmer/component";
export default class AdminConfigAreasAbout extends Component {
cards = [1, 2, 3];
<template>
<div class="admin-config-area">
<div class="admin-config-area__primary-content">
{{#each this.cards as |card|}}
<div>{{card}}</div>
{{/each}}
</div>
</div>
</template>
}