<?php
// Array: navigation structure
$navStructure = [
"Projects" => [
["linkText" => "Start", "fileName" => "projects_start.php"],
["linkText" => "Marketing", "fileName" => "marketing.php"],
["linkText" => "SEO", "fileName" => "seo.php"],
["linkText" => "Web-Entwicklung", "fileName" => "develop.php"],
],
"People" => [
["linkText" => "Start", "fileName" => "people_start.php"],
["linkText" => "Peter Müller", "fileName" => "p_mueller.php"],
["linkText" => "Lisa Maier", "fileName" => "l_maier.php"],
["linkText" => "Carla Rossi", "fileName" => "c_rossi.php"],
],
"Locations" => [
["linkText" => "Start", "fileName" => "locations_start.php"],
["linkText" => "Rom", "fileName" => "rome.php"],
["linkText" => "Zürich", "fileName" => "zurich.php"],
["linkText" => "Berlin", "fileName" => "berlin.php"],
],
"Strategy" => [
["linkText" => "Strategy", "fileName" => "strategy.php"],
],
];
?>