Ver código fonte

disable about page

Daniel Bohry 9 meses atrás
pai
commit
995f52ed04
1 arquivos alterados com 8 adições e 8 exclusões
  1. 8 8
      src/components/Header.svelte

+ 8 - 8
src/components/Header.svelte

@@ -49,9 +49,9 @@
 					<a href="/insights">Insights</a>
 				</li>
 			{/if}
-			<li aria-current={$page.url.pathname === '/about' ? 'page' : undefined}>
-				<a href="/about">About</a>
-			</li>
+<!--			<li aria-current={$page.url.pathname === '/about' ? 'page' : undefined}>-->
+<!--				<a href="/about">About</a>-->
+<!--			</li>-->
 		</ul>
 	</nav>
 
@@ -74,13 +74,13 @@
 	.corner {
 		padding-right: 1em;
 		height: 3em;
-		display: flex; /* Enable flexbox layout */
-		align-items: center; /* Center items vertically */
+		display: flex;
+		align-items: center;
 	}
 
 	.login-message {
-		margin-right: 8px; /* Add some space between the message and the profile image */
-		color: var(--color-text); /* Ensure the text color is set */
+		margin-right: 8px;
+		color: var(--color-text);
 	}
 
 	.corner a {
@@ -99,7 +99,7 @@
 
 	nav {
 		flex-grow: 1;
-		justify-content: flex-start; /* Aligns the menu to the left */
+		justify-content: flex-start;
 	}
 
 	ul {