Skip to content

Commit 51d606a

Browse files
committed
Added Consulting Section and custom Footer
1 parent 8c71d08 commit 51d606a

File tree

5 files changed

+64
-4
lines changed

5 files changed

+64
-4
lines changed

.vitepress/config.mts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ export default defineConfig({
3131
{ icon: 'x', link: 'https://twitter.com/sidebase_io' },
3232
{ icon: 'discord', link: 'https://discord.gg/VzABbVsqAc' },
3333
],
34-
footer: {
35-
message: 'Released under the MIT License.',
36-
copyright: 'Developed by SIDESTREAM',
37-
},
3834
search: {
3935
provider: 'local',
4036
},

.vitepress/theme/Layout.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ import GithubFollowButton from './components/GithubFollowButton.vue'
88
99
import StackSection from './components/Landing/Stack/Section.vue'
1010
import TestimonialsSection from './components/Landing/Testimonials/Section.vue'
11+
import CustomDevelopmentSection from './components/Landing/CustomDevelopment.vue'
12+
13+
import Footer from './components/Landing/Footer.vue'
1114
1215
const { Layout } = DefaultTheme
1316
@@ -43,8 +46,10 @@ const bannerConfig = {
4346
<div class="container relative mx-auto space-y-20">
4447
<StackSection />
4548
<TestimonialsSection />
49+
<CustomDevelopmentSection />
4650
</div>
4751
</div>
52+
<Footer class="mt-10" />
4853
</template>
4954
</Layout>
5055
</template>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<template>
2+
<div class="relative isolate overflow-hidden border border-gray-300 dark:border-gray-800 bg-blue-50 dark:bg-gray-900 rounded-3xl px-6 py-10 text-center sm:px-16">
3+
<h2 class="mx-auto max-w-2xl text-3xl font-bold tracking-tight sm:text-4xl">
4+
In need of a consultant?
5+
</h2>
6+
<p class="mx-auto max-w-xl text-lg leading-8">
7+
Reach out and we can arrange a call!
8+
</p>
9+
<div class="mt-5 flex items-center justify-center gap-x-6">
10+
<a href="mailto:[email protected]" class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">
11+
Send us an email!
12+
</a>
13+
<a href="https://www.sidestream.tech/" target="_blank" class="text-sm font-semibold leading-6 text-gray-900 dark:text-white">Visit website <span aria-hidden="true">→</span></a>
14+
</div>
15+
<svg viewBox="0 0 1024 1024" class="absolute left-1/2 top-1/2 -z-10 h-[64rem] w-[64rem] -translate-x-1/2 [mask-image:radial-gradient(closest-side,white,transparent)]" aria-hidden="true">
16+
<circle cx="512" cy="512" r="512" fill="url(#827591b1-ce8c-4110-b064-7cb85a0b1217)" fill-opacity="0.7" />
17+
<defs>
18+
<radialGradient id="827591b1-ce8c-4110-b064-7cb85a0b1217">
19+
<stop stop-color="#7775D6" />
20+
<stop offset="1" stop-color="#E935C1" />
21+
</radialGradient>
22+
</defs>
23+
</svg>
24+
</div>
25+
</template>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<script lang="ts" setup>
2+
import GithubIcon from './Icons/Github.vue'
3+
import XIcon from './Icons/X.vue'
4+
</script>
5+
6+
<template>
7+
<footer class="border-t border-zinc-100 dark:border-zinc-800">
8+
<div class="mx-auto max-w-7xl py-6 md:flex md:items-center md:justify-between">
9+
<div class="flex justify-center space-x-6 md:order-2">
10+
<a href="https://github.com/sidebase" target="_blank">
11+
<span class="sr-only">Github</span>
12+
<GithubIcon />
13+
</a>
14+
<a href="https://x.com/sidebase_io" target="_blank">
15+
<span class="sr-only">X or Twitter</span>
16+
<XIcon />
17+
</a>
18+
</div>
19+
<div class="mt-8 text-zinc-600 dark:text-zinc-400 text-sm md:order-1 md:mt-0">
20+
<p>
21+
Developed by <a href="https://sidestream.tech" class="underline hover:text-zinc-500 dark:hover:text-zinc-300" target="_blank">SIDESTREAM</a>. Released under the MIT License.
22+
</p>
23+
</div>
24+
</div>
25+
</footer>
26+
</template>

.vitepress/theme/style.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,14 @@
121121
--vp-c-bg-soft: #202127;
122122
}
123123

124+
/**
125+
* Component: Home
126+
* -------------------------------------------------------------------------- */
127+
128+
.VPContent.is-home .VPHome {
129+
margin-bottom: 0px !important;
130+
}
131+
124132
/**
125133
* Component: Button
126134
* -------------------------------------------------------------------------- */

0 commit comments

Comments
 (0)