Website Navigation Flow

Below is a diagram showing the navigation flow between our website pages:

graph LR;
    A["LANDING PAGE"] --> B["MAIN PAGE"];
    B --> C["SEARCH PAGE"];
    A,B,C --> D["TERMS AND COND"];
    D --> B;
    %% This diagram shows the basic user flow through the FAB FINDS website

This diagram represents a simple navigation flow where users start at the landing page, proceed to the main page, and can then access the search page. From the search page, users can view the terms and conditions, and then return to the search page.

SCRAP

// vite.config.js

import { defineConfig } from 'vite'

import react from '@vitejs/plugin-react'

export default defineConfig({

base: '/fabfind-fabselect/',

plugins: [react()],

build: { sourcemap: false, outDir: 'dist', assetsDir: 'assets' }

})

28sep2025 base: "/selectplus/",