Separated admin and site pages
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 54s

This commit is contained in:
2025-09-10 00:16:02 +02:00
parent 76973e7dbe
commit 693eb1ee23
9 changed files with 36 additions and 20 deletions

42
.idea/workspace.xml generated
View File

@@ -4,11 +4,15 @@
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="c41707ed-a751-4a5e-bfaa-7bebd8a58741" name="Changes" comment="Test new deployment strategy v2">
<list default="true" id="c41707ed-a751-4a5e-bfaa-7bebd8a58741" name="Changes" comment="Moved objects from (site) to root">
<change beforePath="$PROJECT_DIR$/src/app/favicon.ico" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/favicon.ico" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/app/foundation.css" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/foundation.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/app/globals.css" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/globals.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/app/layout.tsx" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/layout.tsx" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/app/page.module.css" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/page.module.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/app/page.tsx" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/page.tsx" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/app/the-metatron/[slug]/page.tsx" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/(site)/the-metatron/[slug]/page.tsx" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/components/Markdoc/Renderer/index.tsx" beforeDir="false" afterPath="$PROJECT_DIR$/src/components/Markdoc/Renderer/index.tsx" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/components/Markdoc/DefinitionList/DefinitionList.module.css" beforeDir="false" afterPath="$PROJECT_DIR$/src/components/Markdoc/DefinitionList/DefinitionList.module.css" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -53,10 +57,10 @@
<component name="RecentsManager">
<key name="MoveFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$/src/app/(site)" />
<recent name="$PROJECT_DIR$/src/app" />
<recent name="$PROJECT_DIR$/src/app/(admin)" />
<recent name="$PROJECT_DIR$/src/components/Markdoc" />
<recent name="$PROJECT_DIR$/src/components" />
<recent name="$PROJECT_DIR$/src/components/markdoc" />
</key>
</component>
<component name="RunManager" selected="npm.Next.js: server-side">
@@ -187,7 +191,23 @@
<option name="project" value="LOCAL" />
<updated>1757454959351</updated>
</task>
<option name="localTasksCounter" value="13" />
<task id="LOCAL-00013" summary="Proper Type Declaration in Renderer">
<option name="closed" value="true" />
<created>1757455192247</created>
<option name="number" value="00013" />
<option name="presentableId" value="LOCAL-00013" />
<option name="project" value="LOCAL" />
<updated>1757455192247</updated>
</task>
<task id="LOCAL-00014" summary="Moved objects from (site) to root">
<option name="closed" value="true" />
<created>1757455425256</created>
<option name="number" value="00014" />
<option name="presentableId" value="LOCAL-00014" />
<option name="project" value="LOCAL" />
<updated>1757455425256</updated>
</task>
<option name="localTasksCounter" value="15" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
@@ -198,7 +218,13 @@
<map>
<entry key="MAIN">
<value>
<State />
<State>
<option name="CUSTOM_BOOLEAN_PROPERTIES">
<map>
<entry key="Show.Git.Branches" value="true" />
</map>
</option>
</State>
</value>
</entry>
</map>
@@ -214,7 +240,9 @@
<MESSAGE value="Added a baseline style for most elements" />
<MESSAGE value="Test new deployment strategy" />
<MESSAGE value="Test new deployment strategy v2" />
<option name="LAST_COMMIT_MESSAGE" value="Test new deployment strategy v2" />
<MESSAGE value="Proper Type Declaration in Renderer" />
<MESSAGE value="Moved objects from (site) to root" />
<option name="LAST_COMMIT_MESSAGE" value="Moved objects from (site) to root" />
</component>
<component name="XDebuggerManager">
<breakpoint-manager>
@@ -225,7 +253,7 @@
<option name="timeStamp" value="1" />
</line-breakpoint>
<line-breakpoint enabled="true" type="javascript">
<url>file://$PROJECT_DIR$/src/app/layout.tsx</url>
<url>file://$PROJECT_DIR$/src/app/(site)/layout.tsx</url>
<line>22</line>
<properties lambdaOrdinal="-1" />
<option name="timeStamp" value="2" />

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -1,4 +1,4 @@
@import url('../styles/settings.css');
@import url('../../styles/settings.css');
html {
font-size: var(--typo-size-base);

View File

@@ -1,15 +1,3 @@
/*
--el-dd-color: var(--color-text-primary);
--el-dd-font-family: var(--font-body);
--el-dd-font-size: var(--typo-size-md);
--el-dd-line-height: var(--typo-leading-normal);
--el-dd-indent: var(--spacing-tight);
--el-dd-vspace-base: calc(1em * var(--el-dd-line-height));
--el-dd-vspace-top: calc(var(--el-dd-vspace-base) * var(--vspace-compressed));
--el-dd-vspace-bottom: calc(var(--el-dd-vspace-base) * var(--vspace-tight));
*/
.definitionlist {
margin-block: var(--el-dl-vspace-top) var(--el-dl-vspace-bottom);
font-size: var(--el-dl-font-size);