diff --git a/build.sh b/build.sh index 9f0e6bd..793d5a5 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,5 @@ #!/bin/bash cd "$(dirname "$0")" pnpm run build -rsync -avz --delete dist/ root@threefold.info:/root/hero/www/info/threefoldgalaxy/ \ No newline at end of file +rsync -avz --delete dist/ root@threefold.info:/root/hero/www/info/threefoldgalaxy/ +rsync -rav --delete public/ ${HOME}/hero/var/www/threefoldgalaxy/ \ No newline at end of file diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx new file mode 100644 index 0000000..94ac85e --- /dev/null +++ b/src/components/Footer.jsx @@ -0,0 +1,18 @@ +import React from 'react'; +import { Globe } from 'lucide-react'; + +function Footer() { + return ( + + ); +} + +export default Footer; \ No newline at end of file diff --git a/src/components/Home.jsx b/src/components/Home.jsx index 651df39..8833e24 100644 --- a/src/components/Home.jsx +++ b/src/components/Home.jsx @@ -1,4 +1,5 @@ import React from 'react'; +import Footer from './Footer.jsx'; function Home() { return (
@@ -23,11 +24,7 @@ function Home() { Faster. Greener. Safer.

- +
); } diff --git a/src/components/ProductsPage.jsx b/src/components/ProductsPage.jsx index 0962e80..f298778 100644 --- a/src/components/ProductsPage.jsx +++ b/src/components/ProductsPage.jsx @@ -1,8 +1,9 @@ import { Link } from 'react-router-dom' +import Footer from './Footer.jsx'; import { Button } from './ui/button' import { Card, CardContent, CardHeader, CardTitle } from './ui/card' import { Badge } from './ui/badge' -import { Cpu, Home, Shield, Network, DollarSign, CheckCircle, Users, Zap, TrendingUp, Layers, Scale, Globe } from 'lucide-react' +import { Cpu, Home, Shield, Network, DollarSign, CheckCircle, Users, Zap, TrendingUp, Layers, Scale } from 'lucide-react' function ProductsPage() { return (
@@ -316,16 +317,7 @@ function ProductsPage() { {/* Footer */} - +
) } diff --git a/src/components/RegisterPage.jsx b/src/components/RegisterPage.jsx index 2befaea..aa96f6d 100644 --- a/src/components/RegisterPage.jsx +++ b/src/components/RegisterPage.jsx @@ -1,4 +1,5 @@ import { useState } from 'react' +import Footer from './Footer.jsx'; import { Link } from 'react-router-dom' import { Button } from './ui/button' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from './ui/card' @@ -7,7 +8,7 @@ import { Input } from './ui/input' import { Label } from './ui/label' import { Textarea } from './ui/textarea' import { Checkbox } from './ui/checkbox' -import { CheckCircle, AlertCircle, ArrowRight, Zap, TrendingUp, Target, Shield, Network, BookOpen, Globe, Users } from 'lucide-react' +import { CheckCircle, AlertCircle, ArrowRight, Zap, TrendingUp, Target, Shield, Network, BookOpen, Users } from 'lucide-react' import Step1Form from './Step1Form' import InterestSpecificStep from './InterestSpecificStep' import FinalStepForm from './FinalStepForm' @@ -352,16 +353,7 @@ function RegisterPage() { {/* Footer */} - +