Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7100b5df1d | |||
| cd239f3717 | |||
| 56c32b24ef | |||
| 85af56ec9c | |||
| 3262cda9e4 | |||
| 8fcf53749f |
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||||
@@ -10,9 +10,9 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|||||||
import { Globe, Users, Lightbulb } from "lucide-react";
|
import { Globe, Users, Lightbulb } from "lucide-react";
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Concours photo", id: "contests" },
|
{ name: "Concours photo", id: "/concours" },
|
||||||
{ name: "Classement", id: "rankings" },
|
{ name: "Classement", id: "/classements" },
|
||||||
{ name: "À propos", id: "about" },
|
{ name: "À propos", id: "/a-propos" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
@@ -73,12 +73,7 @@ export default function AboutPage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleApple navItems={navItems} brandName="Vote Gear" />
|
||||||
navItems={navItems}
|
|
||||||
brandName="Vote Gear"
|
|
||||||
bottomLeftText="Communauté Automobile"
|
|
||||||
bottomRightText="votegear@example.com"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about-mission" data-section="about-mission">
|
<div id="about-mission" data-section="about-mission">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||||
@@ -10,9 +10,9 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|||||||
import { Trophy, Users, Zap } from "lucide-react";
|
import { Trophy, Users, Zap } from "lucide-react";
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Concours photo", id: "contests" },
|
{ name: "Concours photo", id: "/concours" },
|
||||||
{ name: "Classement", id: "rankings" },
|
{ name: "Classement", id: "/classements" },
|
||||||
{ name: "À propos", id: "about" },
|
{ name: "À propos", id: "/a-propos" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
@@ -73,12 +73,7 @@ export default function RankingsPage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleApple navItems={navItems} brandName="Vote Gear" />
|
||||||
navItems={navItems}
|
|
||||||
brandName="Vote Gear"
|
|
||||||
bottomLeftText="Communauté Automobile"
|
|
||||||
bottomRightText="votegear@example.com"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="rankings-stats" data-section="rankings-stats">
|
<div id="rankings-stats" data-section="rankings-stats">
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Concours photo", id: "contests" },
|
{ name: "Concours photo", id: "/concours" },
|
||||||
{ name: "Classement", id: "rankings" },
|
{ name: "Classement", id: "/classements" },
|
||||||
{ name: "À propos", id: "about" },
|
{ name: "À propos", id: "/a-propos" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
@@ -72,12 +72,7 @@ export default function ContestsPage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleApple navItems={navItems} brandName="Vote Gear" />
|
||||||
navItems={navItems}
|
|
||||||
brandName="Vote Gear"
|
|
||||||
bottomLeftText="Communauté Automobile"
|
|
||||||
bottomRightText="votegear@example.com"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="all-contests" data-section="all-contests">
|
<div id="all-contests" data-section="all-contests">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
@@ -10,9 +10,9 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|||||||
import { Mail, MapPin, Phone } from "lucide-react";
|
import { Mail, MapPin, Phone } from "lucide-react";
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Concours photo", id: "contests" },
|
{ name: "Concours photo", id: "/concours" },
|
||||||
{ name: "Classement", id: "rankings" },
|
{ name: "Classement", id: "/classements" },
|
||||||
{ name: "À propos", id: "about" },
|
{ name: "À propos", id: "/a-propos" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
@@ -73,12 +73,7 @@ export default function ContactPage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleApple navItems={navItems} brandName="Vote Gear" />
|
||||||
navItems={navItems}
|
|
||||||
brandName="Vote Gear"
|
|
||||||
bottomLeftText="Communauté Automobile"
|
|
||||||
bottomRightText="votegear@example.com"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact-info" data-section="contact-info">
|
<div id="contact-info" data-section="contact-info">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
||||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
@@ -13,9 +13,9 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|||||||
import { Camera, Trophy, Image as ImageIcon, Heart } from "lucide-react";
|
import { Camera, Trophy, Image as ImageIcon, Heart } from "lucide-react";
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Concours photo", id: "contests" },
|
{ name: "Concours photo", id: "/concours" },
|
||||||
{ name: "Classement", id: "rankings" },
|
{ name: "Classement", id: "/classements" },
|
||||||
{ name: "À propos", id: "about" },
|
{ name: "À propos", id: "/a-propos" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
@@ -76,12 +76,7 @@ export default function HomePage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleApple navItems={navItems} brandName="Vote Gear" />
|
||||||
navItems={navItems}
|
|
||||||
brandName="Vote Gear"
|
|
||||||
bottomLeftText="Communauté Automobile"
|
|
||||||
bottomRightText="votegear@example.com"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
|
|||||||
Reference in New Issue
Block a user