12 lines
298 B
Rust
12 lines
298 B
Rust
|
|
// Copyright 2023 System76 <info@system76.com>
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
||
|
|
|
||
|
|
use crate::page;
|
||
|
|
|
||
|
|
pub fn page() -> page::Meta {
|
||
|
|
page::Meta::default()
|
||
|
|
.title(fl!("online-accounts"))
|
||
|
|
.description(fl!("online-accounts", "desc"))
|
||
|
|
.icon_name("goa-panel-symbolic")
|
||
|
|
}
|