mirror of
https://github.com/QuasarApp/DocsSite.git
synced 2025-05-14 20:09:39 +00:00
23 lines
327 B
C++
23 lines
327 B
C++
#include "home.h"
|
|
|
|
Home::Home()
|
|
{
|
|
|
|
}
|
|
|
|
QString Home::description() const {
|
|
return tr("Back to main page");
|
|
}
|
|
|
|
QString Home::title() const {
|
|
return tr("Main page");
|
|
}
|
|
|
|
QString Home::backgroud() const {
|
|
return resourcesPath() + "/quasarapp_banner.png";
|
|
}
|
|
|
|
QString Home::projectName() const {
|
|
return "QuasarApp";
|
|
}
|