Skip to content

Commit 07c3776

Browse files
committed
update fixed navigation bar
1 parent acdc823 commit 07c3776

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

src/app/Components/Pages/NET.Conf/Year2025/Components/CoreTeamSection.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@if (TeamMembers.Length > 0)
66
{
7-
<section class="bg-[#1a1a2e] py-16">
7+
<section data-section-id="core-team" class="bg-[#1a1a2e] py-16">
88
<div class="mx-auto container px-4">
99
<div class="mb-12">
1010
<h2 class="heading heading-1 text-white mb-4">

src/app/Components/Pages/NET.Conf/Year2025/Components/RenownedExpertsSection.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@if (Experts.Length > 0)
66
{
7-
<section class="bg-[#1a1a2e] py-16">
7+
<section data-section-id="speakers" class="bg-[#1a1a2e] py-16">
88
<div class="mx-auto container px-4">
99
<div class="mb-12">
1010
<h2 class="heading heading-1 text-white mb-2">

src/app/Components/Pages/NET.Conf/Year2025/Components/SponsorsSection.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@if (Sponsors.Length > 0)
66
{
7-
<section class="bg-white py-16">
7+
<section data-section-id="sponsors" class="bg-white py-16">
88
<div class="mx-auto container px-4">
99
<div class="mb-12">
1010
<h2 class="heading heading-1 text-dark-purple mb-4">

src/app/Components/Pages/NET.Conf/Year2025/Home.razor

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,10 @@
7979
private IStringLocalizer? _sharedLocalizer;
8080
private IStringLocalizer SharedLocalizer => _sharedLocalizer ??= LocalizerFactory.Create("SharedResources", "app");
8181

82-
private List<FloatingNavBar.NavItem> navigationItems = [];
82+
private List<FloatingNavBar.NavItem> navigationItems = new()
83+
{
84+
new FloatingNavBar.NavItem { Id = "speakers", LabelKey = "NetConf_2025_Nav_Speakers" },
85+
new FloatingNavBar.NavItem { Id = "core-team", LabelKey = "NetConf_2025_Nav_CoreTeam" },
86+
new FloatingNavBar.NavItem { Id = "sponsors", LabelKey = "NetConf_2025_Nav_Sponsors" }
87+
};
8388
}

0 commit comments

Comments
 (0)