diff --git a/frontend/src/cssstyle/documentation.css b/frontend/src/cssstyle/documentation.css deleted file mode 100644 index 70e1259..0000000 --- a/frontend/src/cssstyle/documentation.css +++ /dev/null @@ -1,24 +0,0 @@ -h1 { - @apply self-center my-10 text-6xl font-bold; -} - -h2 { - @apply text-lg font-semibold font-sans; -} - -.DocTitle { - font-size: 2rem; - text-align: center; - color: #a30e79; -} - -.SubTitle { - font-size: 1.5rem; - text-align: center; - color: #a30e79; - @apply py-6; -} - -.DocContainer{ - @apply flex flex-col items-center justify-center max-w-screen-md px-5 pb-14 mx-auto; -} \ No newline at end of file diff --git a/frontend/src/cssstyle/tosstyle.css b/frontend/src/cssstyle/tosstyle.css deleted file mode 100644 index 37e579f..0000000 --- a/frontend/src/cssstyle/tosstyle.css +++ /dev/null @@ -1,41 +0,0 @@ -.h1-tos { - font-size: 3rem; - font-weight: bold; -} - - -.h2-tos { - font-size: 2rem; - font-weight: bold; - margin-top: 5px; - margin-bottom: 5px; -} - -.p-tos { - font-size: 1.1rem; - margin-bottom: 15px; -} - -.card-member { - margin: 10px; -} - -.card-content { - margin: 10px; -} - -.member-name { - font-size: 1.5rem; - font-weight: bold; -} - -.member-title { - font-size: 1rem; - margin-bottom: 15px; -} - -.member-description { - hyphens: auto; - font-size: 0.8rem; - text-align: justify; -} \ No newline at end of file diff --git a/frontend/src/router/router.js b/frontend/src/router/router.js index 7c2053c..b4d87d6 100644 --- a/frontend/src/router/router.js +++ b/frontend/src/router/router.js @@ -5,7 +5,6 @@ import CreatorLayout from '@/views/creators/CreatorLayout.vue'; import About from '@/views/documentation/About.vue'; import ContentPolicy from '@/views/documentation/ContentPolicy.vue'; import CreatorGuide from '@/views/documentation/CreatorGuide.vue'; -import DocumentationHome from '@/views/documentation/DocumentationHome.vue'; import DocumentationLayout from '@/views/documentation/DocumentationLayout.vue'; import FAQ from '@/views/documentation/FAQ.vue'; import HelpAndContact from '@/views/documentation/HelpAndContact.vue'; @@ -43,11 +42,6 @@ const routes = [ path: '/documents', component: DocumentationLayout, children: [ - { - path: '', - component: DocumentationHome, - redirect: { name: 'about' }, // TODO remove this line when the page is ready - }, { path: 'helpandcontact', name: 'helpandcontact', diff --git a/frontend/src/views/creators/CreatorLayout.vue b/frontend/src/views/creators/CreatorLayout.vue index a2ba926..7918af8 100644 --- a/frontend/src/views/creators/CreatorLayout.vue +++ b/frontend/src/views/creators/CreatorLayout.vue @@ -1,6 +1,6 @@  \ No newline at end of file diff --git a/frontend/src/views/documentation/FAQ.vue b/frontend/src/views/documentation/FAQ.vue index 2dd455f..22d6376 100644 --- a/frontend/src/views/documentation/FAQ.vue +++ b/frontend/src/views/documentation/FAQ.vue @@ -1,113 +1,117 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/frontend/src/views/documentation/HelpAndContact.vue b/frontend/src/views/documentation/HelpAndContact.vue index 02a1b47..5e063e5 100644 --- a/frontend/src/views/documentation/HelpAndContact.vue +++ b/frontend/src/views/documentation/HelpAndContact.vue @@ -1,42 +1,57 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/frontend/src/views/documentation/Pricing.vue b/frontend/src/views/documentation/Pricing.vue index 52da677..a691a45 100644 --- a/frontend/src/views/documentation/Pricing.vue +++ b/frontend/src/views/documentation/Pricing.vue @@ -1,9 +1,8 @@ \ No newline at end of file diff --git a/frontend/src/views/documentation/TermsAndConditions.vue b/frontend/src/views/documentation/TermsAndConditions.vue index 8b58fa9..e5a2ad9 100644 --- a/frontend/src/views/documentation/TermsAndConditions.vue +++ b/frontend/src/views/documentation/TermsAndConditions.vue @@ -1,71 +1,103 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/frontend/src/views/documentation/documentation.css b/frontend/src/views/documentation/documentation.css new file mode 100644 index 0000000..51a3450 --- /dev/null +++ b/frontend/src/views/documentation/documentation.css @@ -0,0 +1,23 @@ +h1 { + @apply bg-hSurface text-hOnSurface; + @apply py-5 flex items-center justify-center uppercase; + @apply font-sans font-semibold text-xl; + @apply tracking-widest; + @apply px-2; +} + +h2 { + @apply bg-hSurface text-hOnSurface; + @apply font-sans font-semibold text-lg; + @apply tracking-widest; + @apply py-2; + @apply px-2; +} + +p, ul { + @apply bg-hSurface text-hOnSurface; + @apply font-mono font-normal text-base; + @apply tracking-wide; + @apply py-1; + @apply px-2; +} diff --git a/frontend/src/views/profile/ProfilePage.vue b/frontend/src/views/profile/ProfilePage.vue index e38797e..a222e21 100644 --- a/frontend/src/views/profile/ProfilePage.vue +++ b/frontend/src/views/profile/ProfilePage.vue @@ -1,170 +1,173 @@