mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-19 13:59:22 -04:00
36 lines
660 B
Plaintext
36 lines
660 B
Plaintext
@inherits Sandbox.UI.Panel
|
|
@page "/home"
|
|
@using MenuProject.MenuUI.Front
|
|
@using MenuProject.MenuUI.Front.Achievements
|
|
@using MenuProject.MenuUI.Front.Feed
|
|
@using MenuProject.MenuUI.Layout
|
|
@using Sandbox;
|
|
@using Sandbox.UI;
|
|
|
|
<root class="root">
|
|
<Page>
|
|
|
|
<Left>
|
|
|
|
<RecentlyPlayed></RecentlyPlayed>
|
|
|
|
<hr />
|
|
<FavouritedGames></FavouritedGames>
|
|
|
|
</Left>
|
|
|
|
<Body>
|
|
|
|
<div class="blocks">
|
|
|
|
<div class="block"><PlayerFeed></PlayerFeed></div>
|
|
<div class="block"><AchievementDeck></AchievementDeck></div>
|
|
|
|
</div>
|
|
|
|
</Body>
|
|
</Page>
|
|
|
|
|
|
</root>
|