Update Team; Add livechat
All checks were successful
Deploy to Server / deploy (push) Successful in 1m34s

This commit is contained in:
Christopher Cookman 2025-03-20 05:02:49 -06:00
parent e3f8c70880
commit 51a0eaa9ff
6 changed files with 30 additions and 4 deletions

BIN
public/nottimwakefield.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
public/ramsaso.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

BIN
public/theliftoperator.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
public/vince.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,3 +1,4 @@
import Script from 'next/script';
import Header from '@/components/header'
import Hero from '@/components/hero'
import Features from '@/components/features'
@ -16,6 +17,28 @@ export default function Home() {
<Team />
</main>
<Footer />
<Script
id="chatwoot-sdk"
strategy="afterInteractive"
dangerouslySetInnerHTML={{
__html: `
(function(d,t) {
var BASE_URL="https://support.chrischro.me";
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=BASE_URL+"/packs/js/sdk.js";
g.defer = true;
g.async = true;
s.parentNode.insertBefore(g,s);
g.onload=function(){
window.chatwootSDK.run({
websiteToken: 't8WG4JuE7v9depgKPSqhtaEN',
baseUrl: BASE_URL
})
}
})(document,"script");
`,
}}
/>
</>
)
}

View file

@ -3,16 +3,19 @@ import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
const adminTeam = [
{ name: 'Chris Chrome', ext: '1000', image: '/chris.webp', discord: '@chrischrome' },
{ name: 'Cayden', ext: '1001', image: '/cayden.webp', discord: '@freepbx' },
{ name: 'Ramadya', ext: '1003', image: '/ramsaso.webp', discord: '@ramsaso' },
//{ name: 'Nick', ext: '1036', image: '/nick.webp', discord: '@gamewell' },
{ name: 'Faux Lemons', ext: '1011', image: '/faux_lemons.webp', discord: '@faux_lemons' },
{ name: 'ashton', ext: '1007', image: '/ashton.webp', discord: '@ashtoncarlson' },
{ name: 'Jaryn', ext: '1144', image: '/jaryn.webp', discord: 'jaryn.'}
{ name: 'Jaryn', ext: '1005', image: '/jaryn.webp', discord: 'jaryn.'},
{ name: 'Maddix', ext: '1019', image: '/maddix.webp', discord: '@maddix6859' },
]
const modTeam = [
{ name: 'Maddix', ext: '1019', image: '/maddix.webp', discord: '@maddix6859' },
{ name: 'rocord', ext: '2222', image: '/rocord.webp', discord: '@rocord' }
{ name: 'rocord', ext: '2222', image: '/rocord.webp', discord: '@rocord' },
{ name: 'Vince', ext: '1101', image: '/vince.webp', discord: '@maybvince' },
{ name: 'Theliftoperator', ext: '1134', image: '/theliftoperator.webp', discord: '@theliftoperator' },
{ name: 'Nik', ext: '1008', image: '/nottimwakefield.webp', discord: '@nottimwakefield' },
]
function TeamMember({ name, ext, image, discord }) {