aboutsummaryrefslogtreecommitdiff
path: root/src/components/about
diff options
context:
space:
mode:
authorHakaba Hitoyo <hakabahitoyo@yahoo.co.jp>2019-01-07 17:26:47 +0000
committerShpuld Shpludson <shp@cock.li>2019-01-07 17:26:47 +0000
commita60fc390a036078a857693193cfd18b9ee42954b (patch)
treef243c98009130227fa06cfe41095a14cb985c39b /src/components/about
parent2184334ad919fdcf167ac2f1657d508481ec431b (diff)
Add instance information page for mobile
Diffstat (limited to 'src/components/about')
-rw-r--r--src/components/about/about.js13
-rw-r--r--src/components/about/about.vue12
2 files changed, 25 insertions, 0 deletions
diff --git a/src/components/about/about.js b/src/components/about/about.js
new file mode 100644
index 00000000..b4433b4e
--- /dev/null
+++ b/src/components/about/about.js
@@ -0,0 +1,13 @@
+import InstanceSpecificPanel from '../instance_specific_panel/instance_specific_panel.vue'
+import FeaturesPanel from '../features_panel/features_panel.vue'
+import TermsOfServicePanel from '../terms_of_service_panel/terms_of_service_panel.vue'
+
+const About = {
+ components: {
+ InstanceSpecificPanel,
+ FeaturesPanel,
+ TermsOfServicePanel
+ }
+}
+
+export default About
diff --git a/src/components/about/about.vue b/src/components/about/about.vue
new file mode 100644
index 00000000..bf87e0b8
--- /dev/null
+++ b/src/components/about/about.vue
@@ -0,0 +1,12 @@
+<template>
+ <div class="sidebar">
+ <instance-specific-panel></instance-specific-panel>
+ <features-panel></features-panel>
+ <terms-of-service-panel></terms-of-service-panel>
+ </div>
+</template>
+
+<script src="./about.js" ></script>
+
+<style lang="scss">
+</style>