""" Feed tab - subscriptions feed (placeholder, implemented next) """ from typing import Optional from PySide6.QtCore import Qt from PySide6.QtWidgets import QLabel, QVBoxLayout, QWidget from ..utils.ytsage_localization import _ class FeedPage(QWidget): def __init__(self, router, parent: Optional[QWidget] = None) -> None: super().__init__(parent) self._router = router layout = QVBoxLayout(self) label = QLabel(_("feed.coming_soon")) label.setAlignment(Qt.AlignmentFlag.AlignCenter) layout.addWidget(label)