Problem creating new AEM proyect.
Hello Community im new to AEM Sites and i'm trying to start a project but i have some problems and i can't find the cause so i will show what i did.
As pre-requisites i have installed correct java ver and apache maven ver.

To create a new project i create an empty forder and use the following command:
mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate \
-D archetypeGroupId=com.adobe.aem \
-D archetypeArtifactId=aem-project-archetype \
-D archetypeVersion=42 \
-D appTitle="myWKND" \
-D appId="mywknd" \
-D groupId="com.adobe.aem.my.guides" \
-D artifactId="aem-myguides-wknd" \
-D package="com.adobe.aem.guides.mywknd" \
-D version="0.0.1-SNAPSHOT" \
-D aemVersion="6.5.7"
Then i move into the folder i created in this case cd /aem-myguides-wknd' and use the following command:
mvn clean install -PautoInstallSinglePackage
After this i check the crxde packages console and the packages are installed

Also when i go to AEM 'Sites' i can see the new site

But if i try to edit the page its blank and not editable and if i click anything it shows me an error page.
Other thing i noticed is that if i go to the OSGI Bundle console i have some errors that may or not be the cause so i will show you.

Sincerelly i'm new and i don't know yet how bundles work, i might be missing a step, or maybe the initial mvn command is wrong so i hope someone can help :).