Skip to content

Commit

Permalink
Move Datenschutz page to content package
Browse files Browse the repository at this point in the history
  • Loading branch information
penguineer committed Jul 19, 2024
1 parent 23232ba commit 955c540
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
package com.penguineering.gartenplus.ui.appframe;
package com.penguineering.gartenplus.ui.content;

import com.penguineering.gartenplus.ui.appframe.AppFrameLayout;
import com.penguineering.gartenplus.ui.appframe.GartenplusPage;
import com.vaadin.flow.component.html.H2;
import com.vaadin.flow.component.html.H3;
import com.vaadin.flow.component.html.H4;
import com.vaadin.flow.component.html.Paragraph;
import com.vaadin.flow.router.PageTitle;
import com.vaadin.flow.router.Route;
import com.vaadin.flow.server.auth.AnonymousAllowed;

@Route(value = "/datenschutz", layout = AppFrameLayout.class)
@AnonymousAllowed
@PageTitle("GartenPlus | Datenschutz")
public class LegalDatenschutzPage extends GartenplusPage {
public LegalDatenschutzPage() {
add(new H2("Datenschutz"));
Expand Down

0 comments on commit 955c540

Please sign in to comment.